Redid setup
This commit is contained in:
@@ -58,9 +58,10 @@
|
||||
vim
|
||||
wget
|
||||
git
|
||||
kitty
|
||||
hyprpaper
|
||||
cifs-utils # required for network mounting the NAS
|
||||
];
|
||||
|
||||
programs.firefox.enable = true;
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
@@ -87,6 +88,24 @@
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
|
||||
## NAS Mount
|
||||
|
||||
fileSystems."/mnt/nas" = {
|
||||
device = "//duke.veltnet/smb-share";
|
||||
fsType = "cifs";
|
||||
options = [
|
||||
"x-systemd.automount"
|
||||
"noauto"
|
||||
"user,users"
|
||||
"uid=1000"
|
||||
"gid=100"
|
||||
"credentials=/etc/nixos/secrets/nas-share.creds"
|
||||
];
|
||||
};
|
||||
|
||||
# required for zsh completion
|
||||
environment.pathsToLink = [ "/share/zsh" ];
|
||||
|
||||
|
||||
# List services that you want to enable:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user