a dotfile but it's really big
1{ pkgs, config, ... }:
2{
3 imports = [ ./hardware.nix ];
4 system.stateVersion = "25.11";
5 desktop.noctalia.enable = true;
6
7 boot = {
8 supportedFilesystems = [ "bcachefs" ];
9 kernelPackages = pkgs.linuxPackages_latest;
10 };
11
12 virtualisation.docker.daemon.settings.data-root = "/docker";
13
14 home-manager.users.${config.my.username}.programs.niri.settings.outputs.eDP-1.mode = {
15 width = 2560;
16 height = 1600;
17 };
18}