Update common.nix
This commit is contained in:
parent
7e1689f84c
commit
a131d8cfd8
1 changed files with 12 additions and 8 deletions
20
common.nix
20
common.nix
|
|
@ -72,14 +72,18 @@ systemd.user.services.gnomeSettings = {
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
users.users.fred = {
|
users.users.fred = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "fred";
|
description = "fred";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
bazaar
|
bazaar
|
||||||
fastfetch
|
fastfetch
|
||||||
vesktop
|
vesktop
|
||||||
];
|
];
|
||||||
|
shellInit = ''
|
||||||
|
# Force GTK dark theme for Electron apps like vesktop
|
||||||
|
export GTK_THEME=Adwaita:dark
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue