Installed startship, themed kitty, moved some configs to shell.nix, stylix for theming

This commit is contained in:
2024-12-28 00:25:51 +01:00
parent f087509250
commit 0808c2b3b8
9 changed files with 378 additions and 18 deletions

View File

@ -11,10 +11,11 @@
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix.url = "github:danth/stylix";
};
outputs =
inputs@{ nixpkgs, home-manager, ... }:
inputs@{ nixpkgs, home-manager, stylix, ... }:
let
system = "x86_64-linux";
in
@ -33,6 +34,7 @@
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.users.martin = import ./home.nix;
}
stylix.nixosModules.stylix
];
};
};