1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +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
]

View file

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

View file

@ -1,7 +1,7 @@
{ pkgs, systemConfiguration, homeConfiguration, enabled, ... }:
(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
]

View file

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