Added configuration for desktop

This commit is contained in:
2024-03-12 21:24:29 +01:00
parent 4fdc520c13
commit 7ab4886e90
9 changed files with 219 additions and 2 deletions

30
hosts/desktop/home.nix Normal file
View File

@@ -0,0 +1,30 @@
{ pkgs, ... }:
{
imports = [
#../../modules/home/desktop/hyprland
../../modules/home/programs/common.nix
../../modules/home/programs/firefox.nix
../../modules/home/programs/kitty.nix
../../modules/home/programs/neovim
../../modules/home/programs/git.nix
../../modules/home/programs/ssh.nix
../../modules/home/theme
../../modules/home/theme/blueish.nix
../../modules/home/utils/fonts.nix
];
home = {
username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
home.packages = with pkgs; [
# Desktop Applications
kdenlive
gthumb
unstable.arduino-ide
];
home.stateVersion = "23.11";
}