feat: changes to kanshi nvidia hyprland
Bumped flake inputs to latest
This commit is contained in:
parent
466f0992f1
commit
09e506c6a6
14 changed files with 252 additions and 128 deletions
13
flake.nix
13
flake.nix
|
@ -11,7 +11,10 @@
|
|||
# Home manager
|
||||
home-manager.url = "github:nix-community/home-manager";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
lix-module = {
|
||||
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.0.tar.gz";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
stylix.url = "github:danth/stylix";
|
||||
spicetify-nix = {
|
||||
url = "github:Gerg-L/spicetify-nix";
|
||||
|
@ -25,6 +28,7 @@
|
|||
home-manager,
|
||||
stylix,
|
||||
spicetify-nix,
|
||||
lix-module,
|
||||
...
|
||||
} @ inputs: let
|
||||
inherit (self) outputs;
|
||||
|
@ -36,9 +40,7 @@
|
|||
nixosConfigurations = {
|
||||
"${myHostName}" = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./nixos/configuration.nix
|
||||
];
|
||||
modules = [./nixos/configuration.nix lix-module.nixosModules.default];
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -46,7 +48,8 @@
|
|||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||
homeConfigurations = {
|
||||
"${stevenUserName}@${myHostName}" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
||||
pkgs =
|
||||
nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
||||
extraSpecialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./home-manager/${stevenUserName}/home.nix
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue