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:
parent
9e33c25834
commit
39019f7814
5 changed files with 22 additions and 18 deletions
|
@ -1,5 +1,5 @@
|
|||
{ pkgs, systemPackages, ... }:
|
||||
{ pkgs, homePackages, ... }:
|
||||
|
||||
with pkgs; systemPackages [
|
||||
with pkgs; homePackages "nixos" [
|
||||
discord
|
||||
]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ systemConfiguration, enabled, ... }:
|
||||
{ homeConfiguration, enabled, ... }:
|
||||
|
||||
systemConfiguration {
|
||||
homeConfiguration "nixos" {
|
||||
programs.firefox = enabled {};
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, systemConfiguration, homeConfiguration, enabled, ... }:
|
||||
|
||||
(systemConfiguration {
|
||||
users.defaultUserShell = pkgs.nushell;
|
||||
users.users.nixos.shell = pkgs.nushell;
|
||||
})
|
||||
|
||||
//
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ pkgs, systemPackages, ... }:
|
||||
{ pkgs, homePackages, ... }:
|
||||
|
||||
with pkgs; systemPackages [
|
||||
with pkgs; homePackages "nixos" [
|
||||
openttd
|
||||
]
|
||||
|
|
|
@ -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
|
||||
])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue