This commit is contained in:
Tristan 2024-02-19 15:48:52 +00:00
parent fcf3d41303
commit 46ca5cc665
2 changed files with 5 additions and 17 deletions

View file

@ -70,8 +70,10 @@
[ [
./hardware/vm.nix ./hardware/vm.nix
(auto-login "sway") (auto-login "sway")
./nixos/workstation.nix
] [ ] [
./home/desktop/sway/. ./home/desktop/sway/.
./home/workstation.nix
]; ];
vm-hyprland = vm-hyprland =
@ -86,9 +88,11 @@
mkConf mkConf
[ [
./hardware/vm.nix ./hardware/vm.nix
(./nixos/programs/auto-login.nix "Hyprland") (auto-login "Hyprland")
./nixos/workstation.nix
] [ ] [
./home/desktop/hyprland/. ./home/desktop/hyprland/.
./home/workstation.nix
]; ];
vm-tty = mkConf [ vm-tty = mkConf [

View file

@ -11,20 +11,4 @@ in {
home.stateVersion = "24.05"; home.stateVersion = "24.05";
} }
]; ];
displays.displays = {
Virtual-1 = {
enable = true;
name = "Virtual-1";
workspaces = {
start = 1;
end = 10;
};
resolution = {
x = 1920;
y = 1080;
freq = 60;
};
};
};
} }