mjau eta things
This commit is contained in:
parent
1451f3de8b
commit
d598e458cd
|
@ -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;
|
||||
|
|
|
@ -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
Normal file
1
shared/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
secret.nix
|
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue
Block a user