summaryrefslogtreecommitdiff
path: root/hosts/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/desktop')
-rw-r--r--hosts/desktop/configuration.nix9
-rw-r--r--hosts/desktop/home.nix8
2 files changed, 6 insertions, 11 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix
index 8ee67e5..82909c2 100644
--- a/hosts/desktop/configuration.nix
+++ b/hosts/desktop/configuration.nix
@@ -109,15 +109,6 @@
thunar.enable = true;
};
- environment.systemPackages = with pkgs; [
- (inputs.subtui.packages.x86_64-linux.subtui)
- stow
- gimp
- vis
- lua-language-server
- nil
- ];
-
boot = {
kernelModules = [
"nct6687"
diff --git a/hosts/desktop/home.nix b/hosts/desktop/home.nix
index eea90e7..002f28e 100644
--- a/hosts/desktop/home.nix
+++ b/hosts/desktop/home.nix
@@ -1,4 +1,4 @@
-{ username, ... }:
+{ username, pkgs, ... }:
{
imports = [ ../../hm/default.nix ];
@@ -21,7 +21,6 @@
};
xdg-mime.enable = true;
};
- editors.nixvim.enable = true;
env = {
fsel.enable = true;
mako.enable = true;
@@ -50,6 +49,7 @@
sioyek.enable = true;
browser.librewolf.enable = true;
email.thunderbird.enable = true;
+ editor.enable = true;
media.enable = true;
mpv.enable = true;
chat.enable = true;
@@ -87,4 +87,8 @@
};
};
};
+
+ home.packages = with pkgs; [
+ stow
+ ];
}