feat: add work HM profile
This commit is contained in:
11
flake.nix
11
flake.nix
@@ -41,5 +41,16 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
homeConfigurations = {
|
||||||
|
"xmorel@work" = inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
|
pkgs = pkgs;
|
||||||
|
extraSpecialArgs = {inherit inputs;};
|
||||||
|
modules = [
|
||||||
|
./hosts/work/home.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
# homeManagerModules.default = ./modules/home-manager;
|
||||||
|
# nixosModules.default = ./modules/nixos;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
26
hosts/work/home.nix
Normal file
26
hosts/work/home.nix
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{ config, pkgs, lib, outputs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.username = "xmorel";
|
||||||
|
home.homeDirectory = "/home/xmorel";
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
../../modules/home-manager/dotfiles.nix
|
||||||
|
../../modules/home-manager/helix.nix
|
||||||
|
../../modules/home-manager/waybar.nix
|
||||||
|
../../modules/home-manager/shell.nix
|
||||||
|
../../modules/home-manager/kitty.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
# myHome.dotfiles.enable = true;
|
||||||
|
myHome.helix.enable = true;
|
||||||
|
# myHome.waybar.enable = true;
|
||||||
|
myHome.kitty.enable = true;
|
||||||
|
myHome.shell.enable = true;
|
||||||
|
|
||||||
|
# TODO Move somewhere...
|
||||||
|
# programs.spotify-player.enable = true;
|
||||||
|
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
home.stateVersion = "23.11";
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user