diff options
Diffstat (limited to 'machines/x/home.nix')
| -rw-r--r-- | machines/x/home.nix | 44 | 
1 files changed, 44 insertions, 0 deletions
| diff --git a/machines/x/home.nix b/machines/x/home.nix new file mode 100644 index 0000000..292495c --- /dev/null +++ b/machines/x/home.nix @@ -0,0 +1,44 @@ +{ pkgs, ... }: + +{ +  nixpkgs.config.allowUnfree = true; + +  home = { +    username = "compromyse"; +    homeDirectory = "/home/compromyse"; +  }; + +  home.packages = with pkgs; [ +    wget + +    tmux +    fzf +    fd +    ripgrep + +    cinnamon.nemo +    mate.eom + +    # spotify +    # firefox + +    # obs-studio + +    pavucontrol +    blueman +    brillo +  ]; + +  imports = (map (path: ../../config/${path}) [ +    "themes.nix" +    "dotfiles.nix" +    "git" +    "nvim" +    "alacritty" +    "dwl.nix" +    "bash.nix" +    "fuzzel" +  ]); + +  home.stateVersion = "23.11"; +} | 
