This commit is contained in:
Till 2024-12-03 23:34:37 +01:00
parent 0034b1dd93
commit 22c9b65ae9
7 changed files with 70 additions and 19 deletions

View file

@ -30,10 +30,6 @@
shell = pkgs.fish;
};
programs.steam = {
enable = true;
};
hardware.pulseaudio.enable = false;
services.pipewire = {
@ -60,6 +56,7 @@
environment.systemPackages = with pkgs; [
firefox
libreoffice
foot
pciutils
tree

12
system/laura.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
users.users.laura = {
home = "/home/laura";
isNormalUser = true;
description = "Laura";
extraGroups = [
"networkmanager"
];
};
}

View file

@ -1,9 +1,10 @@
{ config, pkgs, ... }:
{
users.users.lisa = {
users.users.laura = {
home = "/home/laura";
isNormalUser = true;
description = "Lisa";
description = "Laura";
extraGroups = [
"networkmanager"
];

View file

@ -3,17 +3,4 @@
{
services.xserver.enable = true;
services.xserver.desktopManager.plasma6.enable = true;
# environment.gnome.excludePackages = (with pkgs; [
# gnome-tour
# ]) ++ (with pkgs.gnome; [
# geary
# yelp
# gnome-contacts
# gnome-initial-setup
# ]);
# environment.systemPackages = with pkgs.gnome; [
# gnome-sound-recorder
# gnome-tweaks
# gnome-boxes
# ];
}

5
system/steam.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
programs.steam.enable = true;
}