From 46ca5cc665f7c7dc6059ae4213557bb9c0b8a300 Mon Sep 17 00:00:00 2001 From: Tristan Date: Mon, 19 Feb 2024 15:48:52 +0000 Subject: [PATCH] vms: fix --- flake.nix | 6 +++++- hardware/vm.nix | 16 ---------------- 2 files changed, 5 insertions(+), 17 deletions(-) diff --git a/flake.nix b/flake.nix index 4c8b589..ccf714b 100644 --- a/flake.nix +++ b/flake.nix @@ -70,8 +70,10 @@ [ ./hardware/vm.nix (auto-login "sway") + ./nixos/workstation.nix ] [ ./home/desktop/sway/. + ./home/workstation.nix ]; vm-hyprland = @@ -86,9 +88,11 @@ mkConf [ ./hardware/vm.nix - (./nixos/programs/auto-login.nix "Hyprland") + (auto-login "Hyprland") + ./nixos/workstation.nix ] [ ./home/desktop/hyprland/. + ./home/workstation.nix ]; vm-tty = mkConf [ diff --git a/hardware/vm.nix b/hardware/vm.nix index d122f92..f71fc8c 100644 --- a/hardware/vm.nix +++ b/hardware/vm.nix @@ -11,20 +11,4 @@ in { 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; - }; - }; - }; }