temporary udiskie fix

This commit is contained in:
cnst
2024-07-06 16:06:56 +02:00
parent 25bd13b8b6
commit 480c72f059
5 changed files with 10 additions and 10 deletions

6
flake.lock generated
View File

@@ -68,11 +68,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1720227794, "lastModified": 1720268913,
"narHash": "sha256-gcjkTfd03XgMBa7my/f6nZOp3s/Z8Cw7K98AL/t1CQw=", "narHash": "sha256-skLFEbUQ0Q9w4G/tNEBE+bsOD2d6n+Kxa6NEZm1/68g=",
"owner": "nix-community", "owner": "nix-community",
"repo": "flake-firefox-nightly", "repo": "flake-firefox-nightly",
"rev": "9ff83602ac71224c3660ebbdbb08684a58cc8446", "rev": "c94974e671073ae9cf9b7b3c335c35ff43c04a27",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -5,11 +5,10 @@
TERM = "foot"; TERM = "foot";
}; };
imports = [ imports = [
./system/polkit.nix
./git ./git
./gui ./gui
./shell/cnst.nix ./shell/cnst.nix
./appearance ./appearance
./system/polkit.nix
./system/udiskie.nix
]; ];
} }

View File

@@ -1,3 +1,7 @@
{ {
services.udiskie.enable = true; services.udiskie = {
enable = true;
tray = "always";
notify = false;
};
} }

View File

@@ -19,7 +19,6 @@
experimental-features = [ experimental-features = [
"nix-command" "nix-command"
"flakes" "flakes"
"ca-derivations"
]; ];
warn-dirty = false; warn-dirty = false;
}; };

View File

@@ -29,9 +29,6 @@
security = { security = {
rtkit.enable = true; rtkit.enable = true;
polkit = {
enable = true;
};
}; };
programs.dconf.enable = true; programs.dconf.enable = true;
@@ -69,6 +66,7 @@
gnome-disk-utility gnome-disk-utility
wlroots wlroots
fzf fzf
udiskie
]; ];
}; };
} }