waybar config, add calufrax (laptop), etc

This commit is contained in:
alyx 2026-02-23 17:32:32 +00:00
parent e4e1bea480
commit b6e449dd48
Signed by: alyx
SSH key fingerprint: SHA256:jnVDhAlcSXL67FEpIYmr80+FnLv93q3S2MtZ92ohQeA
7 changed files with 160 additions and 5 deletions

View file

@ -60,5 +60,27 @@
}
];
};
nixosConfigurations."calufrax" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./hosts/calufrax
./variables.nix
{ config.var.username = "alyx";
config.var.hostname = "calufrax";
config.var.timezone = "Europe/London";
config.var.class = "desktop";
}
home-manager.nixosModules.home-manager {
home-manager.extraSpecialArgs = {
inherit inputs;
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.sharedModules = [{ imports = with inputs; [nix-index-database.homeModules.default];}];
home-manager.users.alyx = ./home;
}
];
};
};
}