Compare commits

..

No commits in common. "3ca03b83ed59cf73cd5e9194f721b0f1e390cf92" and "2d423aa52125d10ead073f59a1d3180213d63e50" have entirely different histories.

5 changed files with 21 additions and 19 deletions

View file

@ -1,8 +1,8 @@
{ {
inputs, hy3,
pkgs, pkgs,
... ...
}: { } : {
home.file = { home.file = {
".config/hypr/hyprland.conf.d".source = ./hyprland.conf.d; ".config/hypr/hyprland.conf.d".source = ./hyprland.conf.d;
}; };
@ -14,7 +14,7 @@
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
extraConfig = builtins.readFile ./hyprland.conf; extraConfig = builtins.readFile ./hyprland.conf;
plugins = [inputs.hy3.packages.${pkgs.system}.hy3]; plugins = [ hy3.packages.${pkgs.system}.hy3 ];
}; };
# bar is required # bar is required

View file

@ -44,15 +44,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1726838624, "lastModified": 1690751248,
"narHash": "sha256-SU40aZ/UyK4bhuanaWvqlhIw2/kiDrGYcKxCkTn5FP8=", "narHash": "sha256-al5+aqPKL2VtCnuMccafyl4hQqZn+xIaG7vLuhGWfvE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "disko", "repo": "disko",
"rev": "0fe779905ffe730eace0bf7ecf56938c625012a5", "rev": "67c4508ce9a778f429a5af3571f49733fd3e8a05",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "make-disk-image",
"repo": "disko", "repo": "disko",
"type": "github" "type": "github"
} }

View file

@ -9,7 +9,7 @@
}; };
disko = { disko = {
url = "github:nix-community/disko"; url = "github:nix-community/disko/make-disk-image";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
@ -28,8 +28,9 @@
nixpkgs, nixpkgs,
disko, disko,
home-manager, home-manager,
hy3,
... ...
} @ inputs: let }: let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
in { in {
@ -47,7 +48,7 @@
"gaspard" = home-manager.lib.homeManagerConfiguration { "gaspard" = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
extraSpecialArgs = {inherit inputs;}; extraSpecialArgs = {inherit hy3;};
modules = [ modules = [
./users/gaspard.nix ./users/gaspard.nix
]; ];
@ -56,7 +57,7 @@
"culisg@im2ag" = home-manager.lib.homeManagerConfiguration { "culisg@im2ag" = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
extraSpecialArgs = {inherit inputs;}; extraSpecialArgs = {inherit hy3;};
modules = [ modules = [
./users/culisg.nix ./users/culisg.nix
]; ];

View file

@ -7,9 +7,9 @@
programs.direnv.enable = true; programs.direnv.enable = true;
imports = [ imports = [
../shell ../../shell
../term ../../term
../editor ../../editor
../de ../../de
]; ];
} }

View file

@ -7,9 +7,9 @@
programs.direnv.enable = true; programs.direnv.enable = true;
imports = [ imports = [
../shell ../../shell
../term ../../term
../editor ../../editor
../de ../../de
]; ];
} }