Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ADD swap, zathura (pdf viewer), smartcard daemon

+8 -1
+4 -1
hardware-configuration.nix
··· 39 39 fsType = "vfat"; 40 40 }; 41 41 42 - swapDevices = [ ]; 42 + swapDevices = [{ 43 + device = "/swapfile"; 44 + size = 32 * 1024; 45 + }]; 43 46 44 47 # Enables DHCP on each ethernet and wireless interface. In case of scripted networking 45 48 # (the default) this is the recommended approach. When using systemd-networkd it's
+1
noah-home.nix
··· 123 123 playerctl 124 124 barrier 125 125 xclip 126 + zathura 126 127 127 128 # Python dev tools 128 129 ruff-lsp
+3
services.nix
··· 16 16 # Enable the OpenSSH daemon. 17 17 services.openssh.enable = true; 18 18 19 + # Smart Card daemon 20 + services.pcscd.enable = true; 21 + 19 22 # This option is for enabling the bolt daemon for managing Thunderbolt/USB4 Devices. 20 23 services.hardware.bolt.enable = true; 21 24