1
0
Fork 0

add spectacle config, add spotify, fix cinny video playback with gstreamer

refactor some stuff to look nicer and have more structure too
This commit is contained in:
Philipp 2025-04-10 19:19:37 +02:00
parent 56a64c1e0e
commit dc99f3d24d
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750
15 changed files with 283 additions and 145 deletions

View file

@ -9,10 +9,16 @@ with lib.${namespace};
./hardware-configuration.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.consoleMode = "max";
boot.loader.efi.canTouchEfiVariables = true;
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
boot = {
binfmt.emulatedSystems = [ "aarch64-linux" ];
loader = {
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
consoleMode = "max";
};
};
};
virtualisation.libvirtd.enable = true;
@ -25,6 +31,15 @@ with lib.${namespace};
networking.hostName = "bodenheizung";
users.users.philipp = {
isNormalUser = true;
description = "Philipp Böhm";
extraGroups = [
"wheel"
"caddy"
];
};
snowfallorg.users.philipp = {
create = true;
admin = true;
@ -38,6 +53,7 @@ with lib.${namespace};
neovim = enabled;
eza = enabled;
nh = enabled;
wireguard = enabled;
};
apps = {
@ -49,6 +65,7 @@ with lib.${namespace};
services = {
btrfs = enabled;
gns3 = enabled;
};
system = {
@ -56,6 +73,7 @@ with lib.${namespace};
enable = true;
emoji = true;
};
gstreamer = enabled;
gnupg = enabled;
};
};