From f19ba4201da63a4fc668652b1d34c2b18f9988d8 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Fri, 28 Jun 2024 07:22:54 -0700 Subject: [PATCH] adjust nixos vm config --- hosts/nixos/configuration.nix | 24 ++++++------------------ hosts/nixos/home.nix | 12 ------------ 2 files changed, 6 insertions(+), 30 deletions(-) diff --git a/hosts/nixos/configuration.nix b/hosts/nixos/configuration.nix index 01e9bf1..166ecc9 100644 --- a/hosts/nixos/configuration.nix +++ b/hosts/nixos/configuration.nix @@ -48,11 +48,9 @@ # Enable the X11 windowing system. services.xserver.enable = true; - snowhawk.dwm.enable = true; - # Enable the XFCE Desktop Environment. - # services.xserver.displayManager.lightdm.enable = true; - # services.xserver.desktopManager.budgie.enable = true; + services.xserver.displayManager.lightdm.enable = true; + services.xserver.desktopManager.budgie.enable = true; # Configure keymap in X11 services.xserver = { @@ -108,22 +106,12 @@ tree libsecret + firefox + imagemagick + nix-output-monitor - gparted - arandr - flameshot - - # steam - spotify - discord - steam-run - - xivlauncher - # (xivlauncher.override { - # useSteamRun = false; - # }) - + changes git-credential-oauth xclip diff --git a/hosts/nixos/home.nix b/hosts/nixos/home.nix index 228cd01..deb85a8 100644 --- a/hosts/nixos/home.nix +++ b/hosts/nixos/home.nix @@ -15,14 +15,6 @@ xsession.numlock.enable = true; - services.dunst.enable = true; - services.unclutter.enable = true; - - programs.chromium = { - enable = true; - package = pkgs.google-chrome; - }; - home.packages = with pkgs; [ # (pkgs.writeShellScriptBin "my-hello" '' # echo "Hello, ${config.home.username}!" @@ -31,10 +23,6 @@ (writeShellScriptBin "rebuild" '' sudo nixos-rebuild switch --log-format internal-json -v |& nom --json '') - - feh - imagemagick - brave ]; home.file = { };