dotfiles/home/pixnix.nix

22 lines
345 B
Nix
Raw Permalink Normal View History

2023-07-29 02:56:41 +00:00
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
./global
./features/cli/extras
2023-07-29 02:56:41 +00:00
./features/desktop
2023-09-29 14:16:09 +00:00
./features/desktop/hyprland
2023-07-29 02:56:41 +00:00
];
# packages
home.packages = with pkgs; [
vagrant
];
2023-09-29 14:16:09 +00:00
monitors = [{
name = "eDP-1";
width = 2400;
height = 1600;
workspace = "1";
primary = true;
}];
2023-07-29 02:56:41 +00:00
}