Compare commits

...

2 commits

Author SHA1 Message Date
willifan
3b1ed7e281 organize modules 2024-12-26 16:51:37 +01:00
willifan
1965db3417 added android udev rules 2024-12-24 21:38:08 +01:00
57 changed files with 18 additions and 15 deletions

View file

@ -15,9 +15,9 @@
./nfs.nix ./nfs.nix
./radicale.nix ./radicale.nix
../../modules/common ../../modules/DEFAULT/COMMON
../../modules/server ../../modules/DEFAULT/SERVER
../../modules/home-manager ../../modules/HOME-MANAGER/COMMON
]; ];

View file

@ -4,9 +4,9 @@
./hardware-configuration.nix ./hardware-configuration.nix
#./disko.nix #./disko.nix
../../modules/common ../../modules/DEFAULT/COMMON
../../modules/desktop ../../modules/DEFAULT/DESKTOP
../../modules/home-manager ../../modules/HOME-MANAGER/COMMON
]; ];
common.syncthing = { common.syncthing = {

View file

@ -4,9 +4,9 @@
./hardware-configuration.nix ./hardware-configuration.nix
./disko.nix ./disko.nix
../../modules/common ../../modules/DEFAULT/COMMON
../../modules/desktop ../../modules/DEFAULT/DESKTOP
../../modules/home-manager ../../modules/HOME-MANAGER/COMMON
]; ];
} }

View file

@ -4,9 +4,9 @@
./hardware-configuration.nix ./hardware-configuration.nix
./disko.nix ./disko.nix
../../modules/common ../../modules/DEFAULT/COMMON
../../modules/desktop ../../modules/DEFAULT/DESKTOP
../../modules/home-manager ../../modules/HOME-MANAGER/COMMON
]; ];

View file

@ -2,7 +2,7 @@
{ {
sops.defaultSopsFile = ../../secrets/secrets.yaml; sops.defaultSopsFile = ../../../secrets/secrets.yaml;
sops.defaultSopsFormat = "yaml"; sops.defaultSopsFormat = "yaml";
sops.age.keyFile = "/home/willifan/.config/sops/age/keys.txt"; sops.age.keyFile = "/home/willifan/.config/sops/age/keys.txt";

View file

@ -1,4 +1,4 @@
{ config, ... }: { pkgs, ... }:
{ {
imports = [ imports = [
@ -7,6 +7,8 @@
./vscodium.nix ./vscodium.nix
]; ];
boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
} }

View file

@ -7,6 +7,7 @@
hardware.saleae-logic.enable = true; hardware.saleae-logic.enable = true;
services.udev.packages = [ services.udev.packages = [
pkgs.android-udev-rules
(pkgs.writeTextFile { (pkgs.writeTextFile {
name = "sigrok"; name = "sigrok";
text = '' text = ''
@ -429,4 +430,4 @@
}) })
]; ];
} }