feat: Split programs from configuration.nix to others
This commit is contained in:
@@ -21,13 +21,6 @@
|
|||||||
# withUWSM = true;
|
# withUWSM = true;
|
||||||
xwayland.enable = true;
|
xwayland.enable = true;
|
||||||
};
|
};
|
||||||
nix-ld = {
|
|
||||||
enable = true;
|
|
||||||
libraries = with pkgs; [
|
|
||||||
libglvnd
|
|
||||||
];
|
|
||||||
};
|
|
||||||
gnome-disks.enable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services.NetworkManager-wait-online.enable = lib.mkForce false;
|
systemd.services.NetworkManager-wait-online.enable = lib.mkForce false;
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
{
|
{...}: {
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
imports = [
|
||||||
./adb.nix
|
./adb.nix
|
||||||
./steam.nix
|
./steam.nix
|
||||||
@@ -10,5 +6,7 @@
|
|||||||
./localsend.nix
|
./localsend.nix
|
||||||
./appimage.nix
|
./appimage.nix
|
||||||
./obs-studio.nix
|
./obs-studio.nix
|
||||||
|
./gnome-disks.nix
|
||||||
|
./nix-ld.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
3
nixos/ryu/programs/gnome-disks.nix
Normal file
3
nixos/ryu/programs/gnome-disks.nix
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{...}: {
|
||||||
|
programs.gnome-disks.enable = true;
|
||||||
|
}
|
||||||
8
nixos/ryu/programs/nix-ld.nix
Normal file
8
nixos/ryu/programs/nix-ld.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{pkgs, ...}: {
|
||||||
|
programs.nix-ld = {
|
||||||
|
enable = true;
|
||||||
|
libraries = with pkgs; [
|
||||||
|
libglvnd
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user