Compare commits

..

No commits in common. "e2637dcb5c5d897a2e7efa8eaffb08c37dfdce26" and "cc354afe693bfce2a3b9aaf0cc7c92bbd81d7fed" have entirely different histories.

2 changed files with 17 additions and 19 deletions

View file

@ -41,17 +41,6 @@
overlays = [ overlays = [
nur.overlay nur.overlay
]; ];
home-manager-config = toplevel: [
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.extraSpecialArgs = {inherit inputs;};
home-manager.users.tacocat = {
imports = [toplevel];
_module.args.theme = import ./modules/themes;
};
}
];
in { in {
# desktop # desktop
nixosConfigurations."BICEP" = nixpkgs.lib.nixosSystem { nixosConfigurations."BICEP" = nixpkgs.lib.nixosSystem {
@ -70,13 +59,22 @@
nixosConfigurations."JWST" = nixpkgs.lib.nixosSystem { nixosConfigurations."JWST" = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = {inherit inputs;}; specialArgs = {inherit inputs;};
modules = modules = [
[
./hosts/JWST/configuration.nix ./hosts/JWST/configuration.nix
nixos-hardware.nixosModules.dell-xps-15-9520 nixos-hardware.nixosModules.dell-xps-15-9520
{nixpkgs.overlays = overlays;} {nixpkgs.overlays = overlays;}
] home-manager.nixosModules.home-manager
++ home-manager-config ./users/tacocat/home.nix; {
home-manager.useGlobalPkgs = true;
home-manager.extraSpecialArgs = {inherit inputs;};
home-manager.users."tacocat" = {
imports = [
./users/tacocat/home.nix
];
_module.args.theme = import ./modules/themes;
};
}
];
}; };
formatter.${system} = pkgs.alejandra; formatter.${system} = pkgs.alejandra;

View file

@ -2,7 +2,7 @@
home = { home = {
username = "tacocat"; username = "tacocat";
homeDirectory = "/home/tacocat"; homeDirectory = "/home/tacocat";
stateVersion = "24.05"; stateVersion = "23.11";
sessionVariables = { sessionVariables = {
EDITOR = "hx"; EDITOR = "hx";
BAT_THEME = "ansi"; BAT_THEME = "ansi";