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:
7
user/utilities/3d-printing.nix
Normal file
7
user/utilities/3d-printing.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
prusa-slicer
|
||||
]);
|
||||
}
|
7
user/utilities/bootable-media.nix
Normal file
7
user/utilities/bootable-media.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
ventoy
|
||||
]);
|
||||
}
|
11
user/utilities/default.nix
Normal file
11
user/utilities/default.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./3d-printing.nix
|
||||
./bootable-media.nix
|
||||
./file-syncing.nix
|
||||
./keyboard-configuration.nix
|
||||
./passwords.nix
|
||||
];
|
||||
}
|
5
user/utilities/file-syncing.nix
Normal file
5
user/utilities/file-syncing.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.syncthing.enable = true;
|
||||
}
|
7
user/utilities/keyboard-configuration.nix
Normal file
7
user/utilities/keyboard-configuration.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
via
|
||||
]);
|
||||
}
|
7
user/utilities/passwords.nix
Normal file
7
user/utilities/passwords.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
bitwarden
|
||||
]);
|
||||
}
|
Reference in New Issue
Block a user