Compare commits

..

2 Commits

Author SHA1 Message Date
08ba8c8006
users/jordan: refactor per-host configs
All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m2s
2025-04-28 21:21:41 +01:00
bf069d05ce
nh: move to odyssey specific 2025-04-28 21:10:10 +01:00
7 changed files with 80 additions and 43 deletions

16
users/jordan/atlas.nix Normal file
View File

@ -0,0 +1,16 @@
{
pkgs,
...
}:
{
imports = [
./common/optional/graphical/firefox.nix
./common/optional/graphical/gnome.nix
];
home.packages = with pkgs; [
jellyfin-media-player
qbittorrent
];
}

View File

@ -1,40 +0,0 @@
{
lib,
pkgs,
osConfig,
...
}:
{
imports =
[
./firefox.nix
./thunderbird.nix
]
++ lib.optionals osConfig.modules.system.desktop.gnome.enable [
./gnome.nix
]
++ lib.optionals osConfig.modules.system.desktop.hyprland.enable [
./hyprland
];
home.packages = with pkgs; [
# ardour
# audacity
# blender
# gimp
# handbrake
# hunspell
# hunspellDicts.en-gb-large
# hunspellDicts.en-us-large
# inkscape
jellyfin-media-player
# krita
# libreoffice
# mkvtoolnix
# obs-studio
qbittorrent
# slack
# zoom-us
];
}

View File

@ -0,0 +1,13 @@
{
pkgs,
...
}:
{
home.packages = with pkgs; [
hunspell
hunspellDicts.en-gb-large
hunspellDicts.en-us-large
libreoffice
];
}

View File

@ -44,8 +44,6 @@ in
./common/ssh.nix
] ++ optional (builtins.pathExists hostFile) hostFile;
programs.nh.enable = true;
home = {
username = name;
};

15
users/jordan/helios.nix Normal file
View File

@ -0,0 +1,15 @@
{
pkgs,
...
}:
{
imports = [
./common/optional/graphical/firefox.nix
./common/optional/graphical/gnome.nix
];
home.packages = with pkgs; [
jellyfin-media-player
];
}

15
users/jordan/hypnos.nix Normal file
View File

@ -0,0 +1,15 @@
{
pkgs,
...
}:
{
imports = [
./common/optional/graphical/firefox.nix
./common/optional/graphical/gnome.nix
];
home.packages = with pkgs; [
audacity
];
}

View File

@ -1,9 +1,29 @@
{
pkgs,
...
}:
{
imports = [
./common/optional/graphical
./common/optional/graphical/firefox.nix
./common/optional/graphical/hyprland
./common/optional/graphical/libreoffice.nix
./common/optional/graphical/thunderbird.nix
];
programs.nh.enable = true;
home.packages = with pkgs; [
# ardour
audacity
blender
gimp
handbrake
inkscape
jellyfin-media-player
krita
mkvtoolnix
# obs-studio
qbittorrent
];
}