Separate System and User packages
- Move user programs out of systems section and int user section - Install user packages with home manager rather than system wide
This commit is contained in:
12
system/utilities/dbus.nix
Normal file
12
system/utilities/dbus.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.dbus = {
|
||||
enable = true;
|
||||
packages = [ pkgs.dconf ];
|
||||
};
|
||||
|
||||
programs.dconf = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
9
system/utilities/default.nix
Normal file
9
system/utilities/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./dbus.nix
|
||||
./gnome-keyring.nix
|
||||
./miscellaneous.nix
|
||||
];
|
||||
}
|
7
system/utilities/gnome-keyring.nix
Normal file
7
system/utilities/gnome-keyring.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.gnome = {
|
||||
gnome-keyring.enable = true;
|
||||
};
|
||||
}
|
14
system/utilities/miscellaneous.nix
Normal file
14
system/utilities/miscellaneous.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
wget
|
||||
curl
|
||||
zsh
|
||||
git
|
||||
rsync
|
||||
cryptsetup
|
||||
home-manager
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user