add some aux programs
This commit is contained in:
parent
330eea98d1
commit
b45ef040d1
@ -16,6 +16,8 @@
|
|||||||
../../modules/services/docker.nix
|
../../modules/services/docker.nix
|
||||||
../../modules/desktop/dm
|
../../modules/desktop/dm
|
||||||
../../modules/desktop/de
|
../../modules/desktop/de
|
||||||
|
../../modules/chat
|
||||||
|
../../modules/games
|
||||||
];
|
];
|
||||||
desktop.dm.name = "sddm";
|
desktop.dm.name = "sddm";
|
||||||
desktop.dm.autologin = "jonas";
|
desktop.dm.autologin = "jonas";
|
||||||
@ -32,7 +34,6 @@
|
|||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Jonas";
|
description = "Jonas";
|
||||||
extraGroups = [ "networkmanager" "wheel" "docker"];
|
extraGroups = [ "networkmanager" "wheel" "docker"];
|
||||||
packages = with pkgs; [ ];
|
|
||||||
};
|
};
|
||||||
users.defaultUserShell = pkgs.zsh;
|
users.defaultUserShell = pkgs.zsh;
|
||||||
|
|
||||||
@ -117,4 +118,7 @@
|
|||||||
|
|
||||||
# touchpad
|
# touchpad
|
||||||
services.xserver.libinput.touchpad.naturalScrolling = true;
|
services.xserver.libinput.touchpad.naturalScrolling = true;
|
||||||
|
|
||||||
|
# steam
|
||||||
|
programs.steam.enable = true;
|
||||||
}
|
}
|
||||||
|
|||||||
8
modules/chat/default.nix
Normal file
8
modules/chat/default.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
users.users."jonas".packages = with pkgs; [
|
||||||
|
discord
|
||||||
|
zoom
|
||||||
|
];
|
||||||
|
}
|
||||||
@ -16,12 +16,8 @@ in
|
|||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
utterly-nord-plasma
|
utterly-nord-plasma
|
||||||
libsForQt5.qtstyleplugin-kvantum
|
libsForQt5.qtstyleplugin-kvantum
|
||||||
libsForQt5.plasma-browser-integration
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Use kvantum themes
|
qt.style.name = "kvantum";
|
||||||
environment.variables = {
|
|
||||||
"QT_STYLE_OVERRIDE"="kvantum";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
8
modules/games/default.nix
Normal file
8
modules/games/default.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.steam.enable = true;
|
||||||
|
users.users."jonas".packages = with pkgs; [
|
||||||
|
lutris
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user