diff options
author | Franck Cuny <franck@fcuny.net> | 2023-05-01 19:52:29 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-05-01 19:52:29 -0700 |
commit | 5493fe0db118b0fd934073eb63d2d2e3e1fc99df (patch) | |
tree | b6e1a0d57b39f2c2a366358d5bcd5a54dc66e20c /hosts | |
parent | profiles/laptop: consolidate services related to laptop (diff) | |
download | world-5493fe0db118b0fd934073eb63d2d2e3e1fc99df.tar.gz |
profiles/workstation: moved more things around
Diffstat (limited to '')
-rw-r--r-- | hosts/aptos/default.nix | 3 | ||||
-rw-r--r-- | hosts/aptos/hardware.nix | 3 | ||||
-rw-r--r-- | hosts/aptos/services.nix | 10 |
3 files changed, 0 insertions, 16 deletions
diff --git a/hosts/aptos/default.nix b/hosts/aptos/default.nix index acfc64b..d6f68fa 100644 --- a/hosts/aptos/default.nix +++ b/hosts/aptos/default.nix @@ -10,9 +10,6 @@ "${self}/profiles/laptop.nix" ]; - # Allow setting GTK configuration using home-manager - programs.dconf.enable = true; - # install and configure the fonts my.systems.fonts.enable = true; diff --git a/hosts/aptos/hardware.nix b/hosts/aptos/hardware.nix index 990ab60..4635e69 100644 --- a/hosts/aptos/hardware.nix +++ b/hosts/aptos/hardware.nix @@ -41,9 +41,6 @@ swapDevices = [{ device = "/dev/disk/by-uuid/24041034-ff39-44bf-a04c-8fd8318b554d"; }]; - # Install tools related to the scanner (scanimage etc) - hardware.sane.enable = true; - my.hardware.intel.enable = true; my.hardware.bluetooth.enable = true; diff --git a/hosts/aptos/services.nix b/hosts/aptos/services.nix index 379ce78..4e9e8ae 100644 --- a/hosts/aptos/services.nix +++ b/hosts/aptos/services.nix @@ -5,17 +5,7 @@ let in { my.services = { - # enable a few services related to the gnome desktop - gnome.enable = true; - - # we need avahi in order to use the printer/scanner - avahi.enable = true; - syncthing.enable = true; - - # for the yubikeys - pcscd.enable = true; - backup = { enable = true; repository = "sftp:192.168.6.40:/aptos"; |