This commit is contained in:
2025-04-29 20:18:35 -05:00
parent 8ac7ea2ddd
commit a41c550451
5 changed files with 22 additions and 0 deletions

View File

@@ -8,6 +8,7 @@
imports = imports =
[ [
./hardware-configuration.nix ./hardware-configuration.nix
./modules
]; ];
programs.hyprland.enable = true; programs.hyprland.enable = true;
@@ -35,6 +36,7 @@
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
kitty
vim vim
wget wget
git git

View File

@@ -0,0 +1,5 @@
{
imports = [
./desktop
];
}

View File

@@ -0,0 +1,5 @@
{
imports = [
./hyprland
];
}

View File

@@ -0,0 +1,5 @@
{
imports = [
./monitor.nix
];
}

View File

@@ -0,0 +1,5 @@
{
config.me.rum.programs.hyprland.settings.monitor = [
", 1920x1080@60, auto, 1"
];
}