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:
parent
56a64c1e0e
commit
dc99f3d24d
15 changed files with 283 additions and 145 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue