mjau eta things
This commit is contained in:
parent
1451f3de8b
commit
d598e458cd
|
@ -29,7 +29,10 @@
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
users.rachel = import ./home/rachel.nix {
|
users.rachel = import ./home/rachel.nix {
|
||||||
pkgs = pkgs;
|
pkgs = pkgs;
|
||||||
unstable = nixpkgs-unstable.legacyPackages.${system};
|
unstable = import nixpkgs-unstable {
|
||||||
|
system = system;
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
agda = agda.packages.${system}.Agda;
|
agda = agda.packages.${system}.Agda;
|
||||||
cornelis = cornelis.packages.${system}.cornelis;
|
cornelis = cornelis.packages.${system}.cornelis;
|
||||||
cornelis-vim = cornelis.packages.${system}.cornelis-vim;
|
cornelis-vim = cornelis.packages.${system}.cornelis-vim;
|
||||||
|
|
|
@ -39,7 +39,7 @@ in
|
||||||
discord
|
discord
|
||||||
dig
|
dig
|
||||||
xxd
|
xxd
|
||||||
zoom-us
|
unstable.zoom-us
|
||||||
slack
|
slack
|
||||||
imagemagick
|
imagemagick
|
||||||
ffmpeg
|
ffmpeg
|
||||||
|
@ -86,6 +86,7 @@ in
|
||||||
lean4
|
lean4
|
||||||
slippi-netplay
|
slippi-netplay
|
||||||
unstable.kicad
|
unstable.kicad
|
||||||
|
remmina
|
||||||
];
|
];
|
||||||
stateVersion = "23.11";
|
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" ];
|
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]
|
# [LOCALE]
|
||||||
time.timeZone = "Europe/Stockholm";
|
time.timeZone = "Europe/Stockholm";
|
||||||
i18n.defaultLocale = "en_GB.UTF-8";
|
i18n.defaultLocale = "en_GB.UTF-8";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user