laura
This commit is contained in:
parent
0034b1dd93
commit
22c9b65ae9
7 changed files with 70 additions and 19 deletions
|
|
@ -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
12
system/laura.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.laura = {
|
||||
home = "/home/laura";
|
||||
isNormalUser = true;
|
||||
description = "Laura";
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -1,9 +1,10 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.lisa = {
|
||||
users.users.laura = {
|
||||
home = "/home/laura";
|
||||
isNormalUser = true;
|
||||
description = "Lisa";
|
||||
description = "Laura";
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
];
|
||||
|
|
|
|||
|
|
@ -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
5
system/steam.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.steam.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue