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

@ -22,6 +22,7 @@
./system/desktop.nix ./system/desktop.nix
./system/hardware-nova.nix ./system/hardware-nova.nix
./system/gnome.nix ./system/gnome.nix
./system/steam.nix
./system/btrbk.nix ./system/btrbk.nix
./system/yubikey.nix ./system/yubikey.nix
./system/alt.nix ./system/alt.nix
@ -43,6 +44,20 @@
]; ];
}; };
ernst = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
{
networking.hostName = "ernst";
}
./system
./system/hardware-ernst.nix
./system/desktop.nix
./system/plasma.nix
./system/laura.nix
];
};
romulus = nixpkgs.lib.nixosSystem { romulus = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
@ -98,6 +113,13 @@
./home/alt.nix ./home/alt.nix
]; ];
}; };
"lisa@ernst" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux.extend inputs.nur.overlay;
extraSpecialArgs = { inherit inputs; };
modules = [
./home/lisa.nix
];
};
}; };
}; };
} }

27
home/lisa.nix Normal file
View file

@ -0,0 +1,27 @@
{ config, pkgs, inputs, lib, ... }:
{
programs.home-manager.enable = true;
services.dropbox.enable = true;
home.packages = with pkgs; [
chromium
drawing
dropbox
hunspell
hunspellDicts.de_DE
hunspellDicts.en_US
hyphen
libreoffice
libsecret
vlc
xournalpp
zathura
];
imports = [
./fonts.nix
];
}

View file

@ -30,10 +30,6 @@
shell = pkgs.fish; shell = pkgs.fish;
}; };
programs.steam = {
enable = true;
};
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;
services.pipewire = { services.pipewire = {
@ -60,6 +56,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
firefox firefox
libreoffice
foot foot
pciutils pciutils
tree 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, ... }: { config, pkgs, ... }:
{ {
users.users.lisa = { users.users.laura = {
home = "/home/laura";
isNormalUser = true; isNormalUser = true;
description = "Lisa"; description = "Laura";
extraGroups = [ extraGroups = [
"networkmanager" "networkmanager"
]; ];

View file

@ -3,17 +3,4 @@
{ {
services.xserver.enable = true; services.xserver.enable = true;
services.xserver.desktopManager.plasma6.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;
}