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.

UPGRADE: 24.11

+19 -18
+1 -1
gui.nix
··· 28 28 fira-code 29 29 fira-code-symbols 30 30 noto-fonts 31 - noto-fonts-cjk 31 + noto-fonts-cjk-sans 32 32 noto-fonts-emoji 33 33 noto-fonts-extra 34 34 (nerdfonts.override { fonts = [ "FiraCode" ]; })
+1
noah-home.nix
··· 42 42 age 43 43 just 44 44 unstable.catgirl 45 + unstable.zellij 45 46 46 47 # Dev tools 47 48 git
+1 -1
packages.nix
··· 73 73 grim 74 74 swayidle 75 75 swaylock 76 - gnome3.adwaita-icon-theme 76 + adwaita-icon-theme 77 77 dracula-theme 78 78 glib 79 79 xdg-utils
+14 -15
services.nix
··· 58 58 # TODO 59 59 services.samba = { 60 60 enable = true; 61 - securityType = "user"; 62 61 openFirewall = true; 63 - enableNmbd = true; 64 - enableWinbindd = true; 65 - extraConfig = '' 66 - workgroup = WORKGROUP 67 - server string = misaki 68 - security = user 69 - use sendfile = yes 70 - hosts allow = 192.168.1. 127.0.0.1 localhost 71 - hosts deny = 0.0.0.0/0 72 - guest account = nobody 73 - map to guest = bad user 74 - deadtime = 30 75 - ''; 76 - shares = { 62 + nmbd.enable = true; 63 + winbindd.enable = true; 64 + settings = { 65 + global = { 66 + workgroup = "WORKGROUP"; 67 + "server string" = "misaki"; 68 + security = "user"; 69 + "use sendfile" = "yes"; 70 + "hosts allow" = "192.168.1. 127.0.0.1 localhost"; 71 + "hosts deny" = "0.0.0.0/0"; 72 + "guest account" = "nobody"; 73 + "map to guest" = "bad user"; 74 + deadtime = 30; 75 + }; 77 76 shokuhou = { 78 77 path = "/srv/shokuhou"; 79 78 browseable = "yes";
+2 -1
users.nix
··· 1 1 { pkgs, ... }: 2 2 let 3 3 home-manager = builtins.fetchTarball 4 - "https://github.com/nix-community/home-manager/archive/release-24.05.tar.gz"; 4 + "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz"; 5 5 in 6 6 { 7 7 ··· 29 29 "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGf0jjB8VP1YoUDRRPR88DTFUWKd/fzOQ5joAWH8zn8N noah@othinus" 30 30 "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHuQs+W/l/YDpBjd3HeWti03JXYDOLmmfiKXCd8y0g93L//fYoiJuXGMx5KNR7TZoMztGC/4yJhLRMDK2fnTu+U= noah@iphone" 31 31 "sk-ecdsa-sha2-nistp256@openssh.com AAAAInNrLWVjZHNhLXNoYTItbmlzdHAyNTZAb3BlbnNzaC5jb20AAAAIbmlzdHAyNTYAAABBBFaaVbvatEya1iKcsXXifkmDNnpf9AFLKz/ifB2uPqzQfDaEmTW8vTDjDUUgMRhI3LwXi/mh5MqBqC9KLqwv4sEAAAAUaWRfZWNkc2Ffc2tAYmxpbmsuc2g= noah@bitwarden-passkey" 32 + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP+5k7mepfWkM4BE9D44uBmVtcE8KWmAKuK+JWWKs1/+ noah@purple-ipad" 32 33 ]; 33 34 }; 34 35