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:
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
|
discord
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ systemConfiguration, enabled, ... }:
|
{ homeConfiguration, enabled, ... }:
|
||||||
|
|
||||||
systemConfiguration {
|
homeConfiguration "nixos" {
|
||||||
programs.firefox = enabled {};
|
programs.firefox = enabled {};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, systemConfiguration, homeConfiguration, enabled, ... }:
|
{ pkgs, systemConfiguration, homeConfiguration, enabled, ... }:
|
||||||
|
|
||||||
(systemConfiguration {
|
(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
|
openttd
|
||||||
]
|
]
|
||||||
|
|
|
@ -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
|
||||||
|
])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue