1
Fork 0

Refactor: Remove unclean modules/packages directive

This commit is contained in:
caem 2024-07-25 22:19:16 +02:00
parent b65d437c7d
commit 9d90756538
Signed by: caem
GPG key ID: 69A830D03203405F
5 changed files with 8 additions and 19 deletions

View file

@ -11,9 +11,7 @@
../../modules/desktop/apps/communication.nix ../../modules/desktop/apps/communication.nix
../../modules/desktop/apps/games.nix ../../modules/desktop/apps/games.nix
../../modules/desktop/apps/multimedia.nix ../../modules/desktop/apps/multimedia.nix
../../modules/packages/nh.nix ../../modules/system/virtualisation.nix
../../modules/packages/zsh.nix
../../modules/packages/virt-manager.nix
../../home/default.nix ../../home/default.nix
]; ];

View file

@ -1,9 +0,0 @@
{ ... }:
{
programs.nh = {
enable = true;
flake = "/nix/config";
};
}

View file

@ -1,6 +0,0 @@
{ ... }:
{
programs.zsh.enable = true;
}

View file

@ -1,6 +1,13 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
programs.zsh.enable = true;
programs.nh = {
enable = true;
flake = "/nix/config";
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
fastfetch fastfetch
wget wget

View file

@ -4,4 +4,3 @@
virtualisation.libvirtd.enable = true; virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true; programs.virt-manager.enable = true;
} }