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:
Sravan Balaji
2024-03-27 16:27:20 -04:00
parent 59f88dad0f
commit 7f320b85d4
43 changed files with 120 additions and 107 deletions

View File

@@ -1,6 +1,8 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = [ pkgs.openrgb-with-all-plugins ];
environment.systemPackages = with pkgs; [
openrgb-with-all-plugins
];
services.hardware.openrgb.enable = true;
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vivaldi
];
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
imports = [
./vscode.nix
];
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vscode
];
}

View File

@@ -1,8 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
wine
protonup-qt
];
}

View File

@@ -1,9 +0,0 @@
{ config, lib, pkgs, ... }:
{
imports = [
./utilities.nix
./launchers.nix
./compatibility.nix
];
}

View File

@@ -1,16 +0,0 @@
{ config, lib, pkgs, ... }:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true;
};
environment.systemPackages = with pkgs; [
bottles
lutris
heroic
prismlauncher
];
}

View File

@@ -1,15 +0,0 @@
{ config, lib, pkgs, ... }:
{
programs.gamemode = {
enable = true;
# settings = {};
# enableRenice = true;
};
environment.systemPackages = with pkgs; [
mangohud
goverlay
vkbasalt
];
}

View File

@@ -1,8 +0,0 @@
{ config, lib, pkgs, ... }:
{
imports = [
./dmenu.nix
./rofi.nix
];
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
dmenu
];
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
rofi
];
}

View File

@@ -1,8 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
blender
obs-studio
];
}

View File

@@ -1,9 +0,0 @@
{ config, lib, pkgs, ... }:
{
imports = [
./players.nix
./editors.nix
./creation.nix
];
}

View File

@@ -1,9 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gimp
libsForQt5.kdenlive
ffmpeg
];
}

View File

@@ -1,12 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gnome.eog
mpv
trackma-gtk
pocket-casts
spotify
spicetify-cli
];
}

View File

@@ -1,10 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
beeper
discord
signal-desktop
zoom-us
];
}

View File

@@ -1,10 +0,0 @@
{ config, lib, pkgs, ... }:
{
imports = [
./office.nix
./finance.nix
./notes.nix
./communication.nix
];
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gnucash
];
}

View File

@@ -1,8 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
anytype
logseq
];
}

View File

@@ -1,10 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
onlyoffice-bin
xournalpp
zathura
libsForQt5.okular
];
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
kitty
];
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
prusa-slicer
];
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
ventoy
];
}

View File

@@ -1,11 +0,0 @@
{ config, lib, pkgs, ... }:
{
imports = [
./3d-printing.nix
./bootable-media.nix
./file-syncing.nix
./keyboard-configuration.nix
./passwords.nix
];
}

View File

@@ -1,5 +0,0 @@
{ config, lib, pkgs, ... }:
{
services.syncthing.enable = true;
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
via
];
}

View File

@@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
bitwarden
];
}

View File

@@ -1,9 +1,9 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = [
pkgs.firewalld
pkgs.firewalld-gui
environment.systemPackages = with pkgs; [
firewalld
firewalld-gui
];
networking.firewall.enable = true;
}

View File

@@ -4,5 +4,6 @@
imports = [
./dbus.nix
./gnome-keyring.nix
./miscellaneous.nix
];
}

View File

@@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vim
wget
curl
zsh
git
rsync
cryptsetup
home-manager
];
}