summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2024-10-18 12:49:32 +0200
committerAlex Auvolat <alex@adnab.me>2024-10-18 12:49:32 +0200
commit0d0780a517eba4535a56900eecf52150142cbacb (patch)
tree58de6c95567d4af9ed4c5fb6e19942cf2036bac0 /nixos
parent5f3f05ae1c1684c64affd0994cb26c67f5857019 (diff)
downloaduser-config-0d0780a517eba4535a56900eecf52150142cbacb.tar.gz
user-config-0d0780a517eba4535a56900eecf52150142cbacb.zip
old changes
Diffstat (limited to 'nixos')
-rw-r--r--nixos/common.nix6
-rw-r--r--nixos/kusanagi.nix1
-rw-r--r--nixos/windowmaker.nix10
3 files changed, 17 insertions, 0 deletions
diff --git a/nixos/common.nix b/nixos/common.nix
index 6b490be..76711cc 100644
--- a/nixos/common.nix
+++ b/nixos/common.nix
@@ -177,6 +177,12 @@
# ----
+ nixpkgs.config.permittedInsecurePackages = [
+ "olm-3.2.16"
+ "electron-27.3.11"
+ "python3.11-youtube-dl-2021.12.17"
+ ];
+
environment.systemPackages = with pkgs; [
home-manager
diff --git a/nixos/kusanagi.nix b/nixos/kusanagi.nix
index d6970ea..d139d94 100644
--- a/nixos/kusanagi.nix
+++ b/nixos/kusanagi.nix
@@ -22,6 +22,7 @@ in
./common.nix
./sway.nix
./xfce.nix
+ ./windowmaker.nix
(import "${home-manager}/nixos")
];
diff --git a/nixos/windowmaker.nix b/nixos/windowmaker.nix
new file mode 100644
index 0000000..377d896
--- /dev/null
+++ b/nixos/windowmaker.nix
@@ -0,0 +1,10 @@
+{ config, pkgs, ... }: {
+ services.xserver.enable = true;
+ services.xserver.windowManager.windowmaker.enable = true;
+
+ environment.systemPackages = with pkgs; [
+ windowmaker.passthru.dockapps.wmsystemtray
+ windowmaker.passthru.dockapps.wmCalClock
+ windowmaker.passthru.dockapps.wmsm-app
+ ];
+}