mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
72 lines
1.6 KiB
Nix
72 lines
1.6 KiB
Nix
{ self, inputs, config, pkgs, lib, ... }:
|
|
let
|
|
mainUser = "demo";
|
|
sharedOptions = {
|
|
inherit mainUser;
|
|
isBtrfs = false;
|
|
isLinux = true;
|
|
isPublic = true;
|
|
profiles = {
|
|
chaostheatre = true;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disk-config.nix
|
|
{
|
|
_module.args.diskDevice = config.swarselsystems.rootDisk;
|
|
}
|
|
"${self}/hosts/nixos/chaostheatre/options.nix"
|
|
inputs.home-manager.nixosModules.home-manager
|
|
{
|
|
home-manager.users."${mainUser}".imports = [
|
|
"${self}/modules/home/common/settings.nix"
|
|
"${self}/hosts/nixos/chaostheatre/options-home.nix"
|
|
"${self}/modules/home/common/sharedsetup.nix"
|
|
];
|
|
}
|
|
];
|
|
|
|
environment.variables = {
|
|
WLR_RENDERER_ALLOW_SOFTWARE = 1;
|
|
};
|
|
|
|
services.qemuGuest.enable = true;
|
|
|
|
boot = {
|
|
loader.systemd-boot.enable = lib.mkForce true;
|
|
loader.efi.canTouchEfiVariables = true;
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
|
};
|
|
|
|
networking = {
|
|
hostName = "chaostheatre";
|
|
firewall.enable = true;
|
|
};
|
|
|
|
swarselsystems = lib.recursiveUpdate
|
|
{
|
|
info = "~SwarselSystems~ demo host";
|
|
wallpaper = self + /files/wallpaper/lenovowp.png;
|
|
initialSetup = true;
|
|
isImpermanence = true;
|
|
isCrypted = true;
|
|
isSecureBoot = false;
|
|
isSwap = true;
|
|
swapSize = "4G";
|
|
rootDisk = "/dev/vda";
|
|
}
|
|
sharedOptions;
|
|
|
|
home-manager.users.${mainUser} = {
|
|
home.stateVersion = lib.mkForce "23.05";
|
|
swarselsystems = lib.recursiveUpdate
|
|
{
|
|
isNixos = true;
|
|
}
|
|
sharedOptions;
|
|
};
|
|
}
|