nixos/home/semita.nix

45 lines
630 B
Nix

{
pkgs,
config,
lib,
...
}: {
imports = [
# Import users
./users/sam
./common/core
# Import optional
./common/optional/git.nix
./common/optional/sops.nix
./common/optional/syncthing.nix
./common/optional/desktop/hyprland
];
home.packages = [
pkgs.kitty
pkgs.zathura
pkgs.xfce.thunar
];
monitors = [
{
name = "Virtual-1";
width = 2048;
height = 1152;
refreshRate = 60;
x = 0;
primary = true;
}
{
name = "Virtual-2";
width = 2048;
height = 1152;
refreshRate = 60;
x = 2048;
}
];
}