Alexandre bed80cefa0
Some checks failed
Build Flake / build (push) Failing after 3h0m24s
Bump Flake / bump (push) Failing after 1m4s
Check config / build (push) Failing after 36s
Added a non-functional host, modified Vulkan and tweaked niri binds
2026-07-31 19:02:22 +02:00

60 lines
1.1 KiB
Nix

{ self, inputs, ... }:
{
flake = {
nixosConfigurations.minimal = inputs.nixpkgs.lib.nixosSystem {
modules = [];
};
nixosModules.minimalConfig = { config, pkgs, inputs, ... }: {
networking = {
hostName = "minimal";
networkmanager = {
enable = true;
};
};
services = {
pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse = {
enable = true;
};
};
};
users = {
users = {
violeta = {
isNormalUser = true;
description = "Violeta Enache";
shell = pkgs.zsh;
extraGroups = [ "networkmanager" "wheel" "video" "render" ];
};
};
};
home-manager = {
useGlobalPkgs = true;
users = {
"violeta" = self.homeModules.comonHomeConfig;
};
};
environment = {
systemPackages = with pkgs; [
thunderbird
];
};
system = {
stateVersion = "24.11";
};
};
};
}