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/browser/vivaldi.nix
Normal file
7
user/browser/vivaldi.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
vivaldi
|
||||
]);
|
||||
}
|
7
user/development/default.nix
Normal file
7
user/development/default.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./vscode.nix
|
||||
];
|
||||
}
|
7
user/development/vscode.nix
Normal file
7
user/development/vscode.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
vscode
|
||||
]);
|
||||
}
|
8
user/gaming/compatibility.nix
Normal file
8
user/gaming/compatibility.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
wine
|
||||
protonup-qt
|
||||
]);
|
||||
}
|
9
user/gaming/default.nix
Normal file
9
user/gaming/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./utilities.nix
|
||||
./launchers.nix
|
||||
./compatibility.nix
|
||||
];
|
||||
}
|
16
user/gaming/launchers.nix
Normal file
16
user/gaming/launchers.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true;
|
||||
gamescopeSession.enable = true;
|
||||
};
|
||||
|
||||
home.packages = (with pkgs; [
|
||||
bottles
|
||||
lutris
|
||||
heroic
|
||||
prismlauncher
|
||||
]);
|
||||
}
|
15
user/gaming/utilities.nix
Normal file
15
user/gaming/utilities.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.gamemode = {
|
||||
enable = true;
|
||||
# settings = {};
|
||||
# enableRenice = true;
|
||||
};
|
||||
|
||||
home.packages = (with pkgs; [
|
||||
mangohud
|
||||
goverlay
|
||||
vkbasalt
|
||||
]);
|
||||
}
|
8
user/launcher/default.nix
Normal file
8
user/launcher/default.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./dmenu.nix
|
||||
./rofi.nix
|
||||
];
|
||||
}
|
7
user/launcher/dmenu.nix
Normal file
7
user/launcher/dmenu.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
dmenu
|
||||
]);
|
||||
}
|
7
user/launcher/rofi.nix
Normal file
7
user/launcher/rofi.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
rofi
|
||||
]);
|
||||
}
|
8
user/media/creation.nix
Normal file
8
user/media/creation.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
blender
|
||||
obs-studio
|
||||
]);
|
||||
}
|
9
user/media/default.nix
Normal file
9
user/media/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./players.nix
|
||||
./editors.nix
|
||||
./creation.nix
|
||||
];
|
||||
}
|
9
user/media/editors.nix
Normal file
9
user/media/editors.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
gimp
|
||||
libsForQt5.kdenlive
|
||||
ffmpeg
|
||||
]);
|
||||
}
|
12
user/media/players.nix
Normal file
12
user/media/players.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
gnome.eog
|
||||
mpv
|
||||
trackma-gtk
|
||||
pocket-casts
|
||||
spotify
|
||||
spicetify-cli
|
||||
]);
|
||||
}
|
10
user/productivity/communication.nix
Normal file
10
user/productivity/communication.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
beeper
|
||||
discord
|
||||
signal-desktop
|
||||
zoom-us
|
||||
]);
|
||||
}
|
10
user/productivity/default.nix
Normal file
10
user/productivity/default.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./office.nix
|
||||
./finance.nix
|
||||
./notes.nix
|
||||
./communication.nix
|
||||
];
|
||||
}
|
7
user/productivity/finance.nix
Normal file
7
user/productivity/finance.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
gnucash
|
||||
]);
|
||||
}
|
8
user/productivity/notes.nix
Normal file
8
user/productivity/notes.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
anytype
|
||||
logseq
|
||||
]);
|
||||
}
|
10
user/productivity/office.nix
Normal file
10
user/productivity/office.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
onlyoffice-bin
|
||||
xournalpp
|
||||
zathura
|
||||
libsForQt5.okular
|
||||
]);
|
||||
}
|
7
user/terminal/kitty.nix
Normal file
7
user/terminal/kitty.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
kitty
|
||||
]);
|
||||
}
|
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