Compare commits

..

No commits in common. "ccfa4fdb4fe027b19cdfedf9df40632d86765a05" and "1eece5263a2153946642cf88e02937be96fa2510" have entirely different histories.

8 changed files with 658 additions and 174 deletions

View file

@ -23,5 +23,4 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
pushFilter: '(nerdfonts)'
extraPullNames: nix-community, om
- run: nix build github:srid/devour-flake -L --no-link --print-out-paths --override-input flake .
- run: nix run github:juspay/omnix --accept-flake-config -- ci run "."

811
flake.lock generated

File diff suppressed because it is too large Load diff

View file

@ -100,6 +100,10 @@
url = "github:callumio/nvf";
inputs.nixpkgs.follows = "unstable";
};
nixvim = {
url = "github:callumio/nixvim";
inputs.nixpkgs.follows = "unstable";
};
agenix = {
url = "github:ryantm/agenix";
@ -125,6 +129,7 @@
omnix = {
url = "github:juspay/omnix";
inputs = {
treefmt-nix.follows = "treefmt-nix";
systems.follows = "systems";
};
};

View file

@ -56,6 +56,7 @@
just
wireshark
nvf
#inputs.nixvim.packages."x86_64-linux".default # nixvim
];
home.stateVersion = "24.05";

View file

@ -1,8 +1,4 @@
{
pkgs,
lib,
...
}: {
{pkgs, ...}: {
programs = {
wireshark.enable = true;
fish.enable = true;
@ -20,7 +16,7 @@
# url = "https://i.redd.it/jd1nuwsl0d121.jpg";
# sha256 = "sha256-ff3ajGVsay2dtHiHmO2MYlqCvexUQjGifMs/ofzuyvI=";
# };
fit = lib.mkForce "Contain";
fit = "Contain";
};
# GTK = {
# application_prefer_dark_theme = true;

View file

@ -26,7 +26,7 @@
openssh.authorizedKeys.keys = config.keys.c;
packages = with pkgs; [
tree
nvf
nixvim
];
};

View file

@ -1,4 +1,5 @@
{inputs, ...}: _final: prev: {
nixvim = inputs.nixvim.packages.${prev.system}.default;
nvf = inputs.nvf.packages.${prev.system}.default;
devour-flake = prev.callPackage inputs.devour-flake {};
agenix = inputs.agenix.packages.${prev.system}.default;

View file

@ -5,6 +5,7 @@
}: {
tmux-sessionizer-cl = pkgs.callPackage ./tmux-sessionizer {};
om = inputs'.omnix.packages.default;
nixvim = inputs'.nixvim.packages.default;
nvf = inputs'.nvf.packages.default;
agenix = inputs'.agenix.packages.default;
vaapiIntel = pkgs.vaapiIntel.override {enableHybridCodec = true;};