1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Move some programs over to the user home from global system

This commit is contained in:
RGBCube 2023-05-14 13:43:03 +03:00
parent 9e33c25834
commit 39019f7814
5 changed files with 22 additions and 18 deletions

View file

@ -1,5 +1,5 @@
{ pkgs, systemPackages, ... }: { pkgs, homePackages, ... }:
with pkgs; systemPackages [ with pkgs; homePackages "nixos" [
discord discord
] ]

View file

@ -1,5 +1,5 @@
{ systemConfiguration, enabled, ... }: { homeConfiguration, enabled, ... }:
systemConfiguration { homeConfiguration "nixos" {
programs.firefox = enabled {}; programs.firefox = enabled {};
} }

View file

@ -1,7 +1,7 @@
{ pkgs, systemConfiguration, homeConfiguration, enabled, ... }: { pkgs, systemConfiguration, homeConfiguration, enabled, ... }:
(systemConfiguration { (systemConfiguration {
users.defaultUserShell = pkgs.nushell; users.users.nixos.shell = pkgs.nushell;
}) })
// //

View file

@ -1,5 +1,5 @@
{ pkgs, systemPackages, ... }: { pkgs, homePackages, ... }:
with pkgs; systemPackages [ with pkgs; homePackages "nixos" [
openttd openttd
] ]

View file

@ -1,20 +1,12 @@
{ pkgs, systemPackages, ... }: { pkgs, systemPackages, homePackages, ... }:
with pkgs; systemPackages [ (with pkgs; systemPackages [
bat bat
htop htop
neofetch neofetch
thefuck thefuck
wine wine
jetbrains.idea-ultimate
obs-studio
qbittorrent
libreoffice
hunspellDicts.en_US
hunspellDicts.en_GB-ize
gcc gcc
go go
@ -27,4 +19,16 @@ with pkgs; systemPackages [
]) ])
lightly-qt lightly-qt
] ])
//
(with pkgs; homePackages "nixos" [
jetbrains.idea-ultimate
obs-studio
qbittorrent
libreoffice
hunspellDicts.en_US
hunspellDicts.en_GB-ize
])