this repo has no description
1
fork

Configure Feed

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

feat: add `nh`

+16 -4
+4 -4
modules/plasma.nix
··· 16 16 sddm.enable = true; 17 17 sddm.wayland.enable = true; 18 18 19 - autoLogin = { 20 - enable = true; 21 - user = "ovy"; 22 - }; 19 + # autoLogin = { 20 + # enable = true; 21 + # user = "ovy"; 22 + # }; 23 23 }; 24 24 25 25 services.desktopManager.plasma6.enable = true;
+12
modules/programs/desktop-cli.nix
··· 25 25 rage 26 26 systemctl-tui 27 27 ]; 28 + 29 + nixos.ifEnabled = {myconfig, ...}: { 30 + programs.nh = { 31 + enable = true; 32 + flake = "/home/${myconfig.constants.username}/.config/nixos"; 33 + }; 34 + }; 35 + 36 + darwin.ifEnabled = {myconfig, ...}: { 37 + environment.systemPackages = [pkgs.nh]; 38 + environment.variables.NH_FLAKE = "/Users/${myconfig.constants.username}/.config/nix-darwin"; 39 + }; 28 40 }