nixos/home/semita.nix

45 lines
634 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.alacritty
pkgs.zathura
pkgs.xfce.thunar
];
monitors = [
{
name = "Virtual-1";
width = 1920;
height = 1440;
refreshRate = 75;
x = 0;
primary = true;
}
{
name = "Virtual-2";
width = 1920;
height = 1440;
refreshRate = 75;
x = 1920;
}
];
}