feat: add work HM profile

This commit is contained in:
Xavier Morel
2024-12-12 23:19:36 +01:00
parent 88a8de8e4b
commit a743229805
2 changed files with 37 additions and 0 deletions

26
hosts/work/home.nix Normal file
View 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";
}