chore: move common packages into users/
This commit is contained in:
parent
9bdda6bfba
commit
df9a38e03d
4 changed files with 60 additions and 58 deletions
|
@ -4,7 +4,6 @@
|
||||||
| ------- | ------- | ---------------------------------------- |
|
| ------- | ------- | ---------------------------------------- |
|
||||||
| marr | x86_64 | Laptop Workstation |
|
| marr | x86_64 | Laptop Workstation |
|
||||||
| brontes | x86_64 | Desktop Workstation |
|
| brontes | x86_64 | Desktop Workstation |
|
||||||
| styrax | x86_64 | |
|
|
||||||
| raptus | x86_64 | |
|
| raptus | x86_64 | |
|
||||||
| nihilus | aarch64 | Small Pi used to make "off-site" backups |
|
| nihilus | aarch64 | Small Pi used to make "off-site" backups |
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
config,
|
config,
|
||||||
inputs',
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
|
@ -116,17 +115,16 @@ in
|
||||||
users = {
|
users = {
|
||||||
defaultUserShell = pkgs.fish;
|
defaultUserShell = pkgs.fish;
|
||||||
users.${username} = {
|
users.${username} = {
|
||||||
packages = [
|
|
||||||
inputs'.nur.packages.grayjay-desktop
|
|
||||||
];
|
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
createHome = true;
|
createHome = true;
|
||||||
|
packages = with pkgs; [
|
||||||
|
prismlauncher
|
||||||
|
orca-slicer
|
||||||
|
];
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
"networkmanager"
|
"networkmanager"
|
||||||
"wheel"
|
|
||||||
"audio"
|
"audio"
|
||||||
"libvirtd" # VM OPs
|
"libvirtd" # VM OPs
|
||||||
"dialout" # Necessary for serial port interactions
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
|
||||||
config,
|
config,
|
||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
|
@ -36,55 +35,8 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
stateVersion = config.system.stateVersion;
|
inherit (config.system) stateVersion;
|
||||||
inherit username;
|
inherit username;
|
||||||
|
|
||||||
packages = with pkgs; [
|
|
||||||
keepassxc
|
|
||||||
digikam
|
|
||||||
fragments
|
|
||||||
element-desktop
|
|
||||||
libreoffice
|
|
||||||
loupe
|
|
||||||
seahorse
|
|
||||||
gimp
|
|
||||||
pwvucontrol
|
|
||||||
thunderbird
|
|
||||||
keepassxc
|
|
||||||
protonmail-bridge-gui
|
|
||||||
varia
|
|
||||||
signal-desktop
|
|
||||||
tagger
|
|
||||||
prismlauncher
|
|
||||||
orca-slicer
|
|
||||||
|
|
||||||
kid3
|
|
||||||
soundconverter
|
|
||||||
|
|
||||||
# proprietary
|
|
||||||
obsidian
|
|
||||||
|
|
||||||
# CLI tools
|
|
||||||
jhead
|
|
||||||
fdupes
|
|
||||||
exiftool
|
|
||||||
sshfs
|
|
||||||
lazygit
|
|
||||||
wl-clipboard
|
|
||||||
|
|
||||||
# custom
|
|
||||||
nysh
|
|
||||||
scripts.nixedit
|
|
||||||
scripts.set-background
|
|
||||||
scripts.fishl
|
|
||||||
scripts.nrun
|
|
||||||
scripts.rpaste
|
|
||||||
scripts.genswitch
|
|
||||||
scripts.gentest
|
|
||||||
scripts.editsym
|
|
||||||
scripts.deployswitch
|
|
||||||
scripts.deploytest
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,16 @@
|
||||||
{ lib, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
inputs',
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (config.modules.meta) username;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
hjem = {
|
hjem = {
|
||||||
users.ny = {
|
users.${username} = {
|
||||||
enable = true;
|
enable = true;
|
||||||
imports = [ ./programs ];
|
imports = [ ./programs ];
|
||||||
};
|
};
|
||||||
|
@ -10,4 +19,48 @@
|
||||||
};
|
};
|
||||||
clobberByDefault = true;
|
clobberByDefault = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
users.users.${username}.packages =
|
||||||
|
[
|
||||||
|
inputs'.nur.packages.grayjay-desktop
|
||||||
|
]
|
||||||
|
++ (with pkgs; [
|
||||||
|
keepassxc
|
||||||
|
digikam
|
||||||
|
fragments
|
||||||
|
element-desktop
|
||||||
|
libreoffice
|
||||||
|
loupe
|
||||||
|
seahorse
|
||||||
|
pwvucontrol
|
||||||
|
thunderbird
|
||||||
|
keepassxc
|
||||||
|
protonmail-bridge-gui
|
||||||
|
signal-desktop
|
||||||
|
tagger
|
||||||
|
kid3
|
||||||
|
|
||||||
|
# proprietary
|
||||||
|
obsidian
|
||||||
|
|
||||||
|
# CLI tools
|
||||||
|
jhead
|
||||||
|
fdupes
|
||||||
|
exiftool
|
||||||
|
sshfs
|
||||||
|
wl-clipboard
|
||||||
|
|
||||||
|
# custom
|
||||||
|
nysh
|
||||||
|
scripts.nixedit
|
||||||
|
scripts.set-background
|
||||||
|
scripts.fishl
|
||||||
|
scripts.nrun
|
||||||
|
scripts.rpaste
|
||||||
|
scripts.genswitch
|
||||||
|
scripts.gentest
|
||||||
|
scripts.editsym
|
||||||
|
scripts.deployswitch
|
||||||
|
scripts.deploytest
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue