mjau eta things

master
Rachel Lambda Samuelsson 2024-04-26 15:21:28 +02:00
parent 1451f3de8b
commit d598e458cd
4 changed files with 15 additions and 2 deletions

View File

@ -29,7 +29,10 @@
useUserPackages = true;
users.rachel = import ./home/rachel.nix {
pkgs = pkgs;
unstable = nixpkgs-unstable.legacyPackages.${system};
unstable = import nixpkgs-unstable {
system = system;
config.allowUnfree = true;
};
agda = agda.packages.${system}.Agda;
cornelis = cornelis.packages.${system}.cornelis;
cornelis-vim = cornelis.packages.${system}.cornelis-vim;

View File

@ -39,7 +39,7 @@ in
discord
dig
xxd
zoom-us
unstable.zoom-us
slack
imagemagick
ffmpeg
@ -86,6 +86,7 @@ in
lean4
slippi-netplay
unstable.kicad
remmina
];
stateVersion = "23.11";
};

1
shared/.gitignore vendored 100644
View File

@ -0,0 +1 @@
secret.nix

View File

@ -15,6 +15,14 @@
options = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=60" ];
};
fileSystems."/mnt/eta" =
let secrets = import secrets.nix;
in {
device = "//192.168.30.33/users";
fsType = "cifs";
options = [ "username=${secrets.etaUser}" "password=${secrets.etaPass}" "uid=1000" "gid=1000" "x-systemd.automount" "noauto" "x-systemd.idle-timeout=60" ];
};
# [LOCALE]
time.timeZone = "Europe/Stockholm";
i18n.defaultLocale = "en_GB.UTF-8";