laura
This commit is contained in:
parent
0034b1dd93
commit
22c9b65ae9
7 changed files with 70 additions and 19 deletions
22
flake.nix
22
flake.nix
|
|
@ -22,6 +22,7 @@
|
|||
./system/desktop.nix
|
||||
./system/hardware-nova.nix
|
||||
./system/gnome.nix
|
||||
./system/steam.nix
|
||||
./system/btrbk.nix
|
||||
./system/yubikey.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 {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
|
|
@ -98,6 +113,13 @@
|
|||
./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
27
home/lisa.nix
Normal 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
|
||||
];
|
||||
|
||||
}
|
||||
|
|
@ -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