diff --git a/profiles/audio/default.nix b/profiles/audio/default.nix deleted file mode 100644 index 10e186d6..00000000 --- a/profiles/audio/default.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ - self, - config, - lib, - pkgs, - ... -}: let - inherit (lib) fileContents; -in { - pub-solar.audio.enable = true; -} diff --git a/profiles/daw/default.nix b/profiles/daw/default.nix deleted file mode 100644 index 894de4e7..00000000 --- a/profiles/daw/default.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ self, config, home-manager, lib, pkgs, inputs, ... }: -let - psCfg = config.pub-solar; -in -{ - # Sets nrdxp.cachix.org binary cache which just speeds up some builds - imports = [ ../cachix ]; - - config = { - pub-solar.audio.enable = lib.mkForce true; - - musnix.enable = true; - - environment.systemPackages = with pkgs; [ - ardour - helm - ]; - - services.pipewire.jack.enable = true; - }; -} diff --git a/profiles/full-install/default.nix b/profiles/full-install/default.nix deleted file mode 100644 index d9b07733..00000000 --- a/profiles/full-install/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ - self, - config, - lib, - pkgs, - ... -}: let - inherit (lib) fileContents; -in { - config = { - pub-solar.audio.mopidy.enable = true; - pub-solar.audio.bluetooth.enable = true; - pub-solar.docker.enable = true; - pub-solar.nextcloud.enable = true; - pub-solar.office.enable = true; - # pub-solar.printing.enable = true; # this is enabled automatically if office is enabled - }; -} diff --git a/profiles/gaming/default.nix b/profiles/gaming/default.nix deleted file mode 100644 index 48c7f6f7..00000000 --- a/profiles/gaming/default.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ - self, - config, - lib, - pkgs, - ... -}: let - inherit (lib) fileContents; -in { - pub-solar.gaming.enable = true; -} diff --git a/profiles/graphical/default.nix b/profiles/graphical/default.nix deleted file mode 100644 index c4937b38..00000000 --- a/profiles/graphical/default.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ - self, - config, - lib, - pkgs, - ... -}: let - inherit (lib) fileContents; -in { - pub-solar.graphical.enable = true; - pub-solar.sway.enable = true; -} diff --git a/profiles/non-free/default.nix b/profiles/non-free/default.nix deleted file mode 100644 index a8e30512..00000000 --- a/profiles/non-free/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ self, config, lib, pkgs, ... }: -let inherit (lib) fileContents; -in -{ - hardware.enableRedistributableFirmware = true; -} diff --git a/profiles/pub-solar-iso/default.nix b/profiles/pub-solar-iso/default.nix deleted file mode 100644 index fa973283..00000000 --- a/profiles/pub-solar-iso/default.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ - self, - config, - lib, - pkgs, - ... -}: let - inherit (lib) fileContents; -in { - config = { - pub-solar.graphical.wayland.software-renderer.enable = true; - pub-solar.sway.terminal = "foot"; - pub-solar.core.iso-options.enable = true; - }; -} diff --git a/profiles/server/default.nix b/profiles/server/default.nix deleted file mode 100644 index 5e461e3e..00000000 --- a/profiles/server/default.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ self, config, lib, pkgs, ... }: -let inherit (lib) fileContents; -in -{ - pub-solar.server.enable = true; - hardware.ksm.enable = true; -} diff --git a/profiles/social/default.nix b/profiles/social/default.nix deleted file mode 100644 index fb04d9e6..00000000 --- a/profiles/social/default.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ - self, - config, - lib, - pkgs, - ... -}: let - inherit (lib) fileContents; -in { - pub-solar.social.enable = true; -} diff --git a/profiles/virtualisation/default.nix b/profiles/virtualisation/default.nix deleted file mode 100644 index 4f42071b..00000000 --- a/profiles/virtualisation/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ self, config, lib, pkgs, ... }: -let inherit (lib) fileContents; -in -{ - pub-solar.virtualisation.enable = true; -} diff --git a/profiles/work/default.nix b/profiles/work/default.nix deleted file mode 100644 index a99f2644..00000000 --- a/profiles/work/default.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ self, config, home-manager, lib, pkgs, inputs, ... }: -let - psCfg = config.pub-solar; -in -{ - pub-solar.docker.enable = true; - pub-solar.nextcloud.enable = true; - pub-solar.social.enable = true; - pub-solar.office.enable = true; - - systemd.enableUnifiedCgroupHierarchy = true; - - environment.systemPackages = with pkgs; [ - jetbrains.goland - minicom - openjdk11 - putty - remmina - thunderbird - vscode - vscode-extensions.golang.go - vscode-extensions.ms-python.python - wireshark - go_1_20 - meld - ]; -}