mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-07 13:29:22 +02:00
update openrgb and add sftp storage
This commit is contained in:
parent
658507c387
commit
deab8572cd
5 changed files with 69 additions and 16 deletions
|
@ -37,7 +37,11 @@
|
|||
};
|
||||
|
||||
services = {
|
||||
hardware.openrgb.enable = true;
|
||||
hardware.openrgb = {
|
||||
enable = true;
|
||||
motherboard = "intel";
|
||||
package = pkgs.openrgb;
|
||||
};
|
||||
fwupd.enable = true;
|
||||
xserver = {
|
||||
videoDrivers = [ "nvidia" ];
|
||||
|
@ -84,6 +88,8 @@
|
|||
discord
|
||||
element-desktop
|
||||
mumble
|
||||
sshfs
|
||||
|
||||
|
||||
# Theming
|
||||
catppuccin-kvantum
|
||||
|
@ -95,7 +101,6 @@
|
|||
programs = {
|
||||
dconf.enable = true;
|
||||
droidcam.enable = true;
|
||||
sysdig.enable = false;
|
||||
xwayland.enable = true;
|
||||
kdeconnect.enable = true;
|
||||
gamemode.enable = true;
|
||||
|
|
|
@ -53,6 +53,32 @@
|
|||
fsType = "ntfs";
|
||||
options = [ "rw" "uid=1000" ];
|
||||
};
|
||||
"/media/backup" = {
|
||||
device = "u384346@u384346.your-storagebox.de:/";
|
||||
fsType = "fuse.sshfs";
|
||||
noCheck = true;
|
||||
options = [
|
||||
"IdentityFile=/home/jopejoe1/.ssh/github"
|
||||
"ServerAliveCountMax=3"
|
||||
"ServerAliveInterval=15"
|
||||
"_netdev"
|
||||
"allow_other"
|
||||
"default_permissions"
|
||||
"exec"
|
||||
"gid=100"
|
||||
"idmap=user"
|
||||
"noatime"
|
||||
"noauto"
|
||||
"reconnect"
|
||||
"transform_symlinks"
|
||||
"uid=1000"
|
||||
"users"
|
||||
"x-systemd.after=network-online.target"
|
||||
"x-systemd.automount"
|
||||
"x-systemd.mount-timeout=10s"
|
||||
"x-systemd.requires=network-online.target"
|
||||
];
|
||||
};
|
||||
#"/media/zfs" = {
|
||||
# device = "jopejoe1";
|
||||
# fsType = "zfs";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue