Heroic moved to stable and nvtop commented out
This commit is contained in:
parent
688cf330ca
commit
5e09533ca1
@ -56,6 +56,7 @@ sudo nixos-rebuild switch --flake ~/.dotfiles#kogami
|
||||
- The system consists currently from 2 profiles:
|
||||
- [Kogami](./kogami/) - My daily driver notebook
|
||||
- [Ginoza](./ginoza/) - Old notebook, only essentials installed
|
||||
- [Tsunemori](./tsunemori/) - Phone configuration, for those moments without notebook
|
||||
|
||||
### Custom setup
|
||||
|
||||
|
||||
@ -1,4 +1,8 @@
|
||||
{userSettings, ...}: {
|
||||
{
|
||||
userSettings,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
# Home manager configuration
|
||||
home.username = "${userSettings.username}";
|
||||
home.homeDirectory = "/home/${userSettings.username}";
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
{
|
||||
pkgs,
|
||||
pkgs-stable,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
@ -9,11 +10,11 @@
|
||||
lib.mkEnableOption "enable games";
|
||||
};
|
||||
config = lib.mkIf config.app_list.games.enable {
|
||||
home.packages = with pkgs; [
|
||||
home.packages =
|
||||
(with pkgs; [
|
||||
vitetris
|
||||
steam
|
||||
superTuxKart
|
||||
heroic
|
||||
wine
|
||||
|
||||
(writeShellScriptBin "gs" ''
|
||||
@ -45,7 +46,10 @@
|
||||
exec gamescope "''${gamescopeArgs[@]}" -- steam "''${steamArgs[@]}"
|
||||
|
||||
'')
|
||||
];
|
||||
])
|
||||
++ (with pkgs-stable; [
|
||||
heroic
|
||||
]);
|
||||
|
||||
nixpkgs.config.allowUnfreePredicate = pkg:
|
||||
builtins.elem (lib.getName pkg) [
|
||||
|
||||
@ -28,7 +28,7 @@
|
||||
++ (
|
||||
if pkgs.system == "x86_64-linux"
|
||||
then [
|
||||
nvtopPackages.full
|
||||
#nvtopPackages.full
|
||||
]
|
||||
else []
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user