NixOS 25.11 migration

This commit is contained in:
TheWanderingCrow 2025-12-01 08:24:10 -05:00
parent bc5129a87d
commit 5718c8ca6d
16 changed files with 107 additions and 463 deletions

View file

@ -4,12 +4,11 @@
pkgs,
hostSpec,
...
}: let
platform =
if hostSpec.isDarwin
then "darwin"
else "nixos";
in {
}:
let
platform = if hostSpec.isDarwin then "darwin" else "nixos";
in
{
imports = lib.flatten [
(map lib.custom.relativeToRoot [
"modules/common/host-spec.nix"
@ -25,15 +24,13 @@ in {
];
home.packages = builtins.attrValues {
inherit
(pkgs)
inherit (pkgs)
screen
ouch
bitwarden-cli
yaak
vimgolf
httpie
protonvpn-cli
protonvpn-gui
;
};