mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 14:54:26 -05:00
auto up 01:59:20 up 7:21, 2 users, load average: 0.17, 0.29, 0.37
This commit is contained in:
@@ -30,6 +30,7 @@
|
|||||||
SUBSYSTEM=="block", ENV{ID_FS_UUID}=="A09C8D5E9C8D2FB8", ENV{UDISKS_IGNORE}="1"
|
SUBSYSTEM=="block", ENV{ID_FS_UUID}=="A09C8D5E9C8D2FB8", ENV{UDISKS_IGNORE}="1"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
||||||
# TODO: Make all your working systems go to ext4 on the full disk for ease of use and storage
|
# TODO: Make all your working systems go to ext4 on the full disk for ease of use and storage
|
||||||
virtualisation.docker.storageDriver = "btrfs";
|
virtualisation.docker.storageDriver = "btrfs";
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,15 @@
|
|||||||
security.pam.services.login.enableGnomeKeyring = true;
|
security.pam.services.login.enableGnomeKeyring = true;
|
||||||
services.gnome.gnome-keyring.enable = true;
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
|
||||||
|
security.polkit.extraConfig = ''
|
||||||
|
polkit.addRule(function(action, subject) {
|
||||||
|
if (action.id == "org.freedesktop.udisks2.filesystem-mount-system" &&
|
||||||
|
subject.isInGroup("wheel")) {
|
||||||
|
return polkit.Result.YES;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
'';
|
||||||
|
|
||||||
# Nix fun
|
# Nix fun
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
nix.settings.experimental-features = [ "flakes" "nix-command" ];
|
nix.settings.experimental-features = [ "flakes" "nix-command" ];
|
||||||
|
|||||||
@@ -81,6 +81,7 @@
|
|||||||
|
|
||||||
# --- System & Network ---
|
# --- System & Network ---
|
||||||
btop
|
btop
|
||||||
|
iotop
|
||||||
fastfetch
|
fastfetch
|
||||||
acpi
|
acpi
|
||||||
brightnessctl
|
brightnessctl
|
||||||
@@ -94,6 +95,7 @@
|
|||||||
curl
|
curl
|
||||||
wget
|
wget
|
||||||
libinput
|
libinput
|
||||||
|
mtr
|
||||||
gdu
|
gdu
|
||||||
timer
|
timer
|
||||||
|
|
||||||
@@ -111,8 +113,11 @@
|
|||||||
bitwarden-cli
|
bitwarden-cli
|
||||||
lazydocker
|
lazydocker
|
||||||
poppler_utils
|
poppler_utils
|
||||||
|
entr
|
||||||
|
yq
|
||||||
lazygit
|
lazygit
|
||||||
gitui
|
gitui
|
||||||
|
tokei
|
||||||
dig
|
dig
|
||||||
unstable.yazi
|
unstable.yazi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user