whole flake: remove unneeded default.nix

This commit is contained in:
Charlie Root 2024-09-08 21:09:36 +02:00
commit d6d66bc43a
8 changed files with 2 additions and 20 deletions

View file

@ -1,11 +0,0 @@
_: {
imports = [
./programs
./other
./services
./wms
./style
./options
./system
];
}

View file

@ -6,7 +6,7 @@
}: let }: let
cfg = config.modules.system.programs.editors.helix; cfg = config.modules.system.programs.editors.helix;
inherit (config.modules.other.system) username; inherit (config.modules.other.system) username;
inherit (lib) mkIf getExe ; inherit (lib) mkIf getExe;
in { in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
home-manager.users.${username} = { home-manager.users.${username} = {

View file

@ -1 +0,0 @@
_: {imports = [./grub-boot.nix];}

View file

@ -1,10 +1,6 @@
_: { _: {
imports = [ imports = [
./keyboard.nix ./keyboard.nix
./boot
./hardware ./hardware
./nix/module.nix
./os/networking/module.nix
./os/security/module.nix
]; ];
} }

View file

@ -1 +1 @@
_: {imports = [./bluetooth.nix ./graphics.nix];} _: {imports = [./bluetooth.nix ./keyboard ./graphics.nix];}

View file

@ -1 +0,0 @@
_: {imports = [./wayland];}

View file

@ -1,6 +1,5 @@
_: { _: {
imports = [ imports = [
./hyprland/module.nix
./variables.nix ./variables.nix
]; ];
} }