resturcting of nixos 1

This commit is contained in:
cnst
2024-07-07 11:34:02 +02:00
parent f56fbc81f6
commit 06062a592b
11 changed files with 121 additions and 37 deletions

View File

@@ -0,0 +1 @@
{services.blueman.enable = true;}

View File

@@ -6,13 +6,4 @@
./openssh.nix
./mullvad.nix
];
services = {
dbus.packages = with pkgs; [
gcr
];
udisks2.enable = true;
gvfs.enable = true;
blueman.enable = true;
gnome.gnome-keyring.enable = true;
};
}

7
nixos/services/dbus.nix Normal file
View File

@@ -0,0 +1,7 @@
{pkgs, ...}: {
services = {
dbus.packages = with pkgs; [
gcr
];
};
}

View File

@@ -0,0 +1 @@
{services.gnome.gnome-keyring.enable = true;}

1
nixos/services/gvfs.nix Normal file
View File

@@ -0,0 +1 @@
{services.gvfs.enable = true;}

View File

@@ -0,0 +1 @@
{services.udisks2.enable = true;}