???? Revert "goodbye foxhut" why tf did i do that
This reverts commit 9ad093b7eb
.
This commit is contained in:
parent
e228e8ca72
commit
48944deeca
59
flake.nix
59
flake.nix
|
@ -163,6 +163,65 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nixosConfigurations.foxhut =
|
||||||
|
let
|
||||||
|
system = "aarch64-linux";
|
||||||
|
pkgs = mkPkgs system;
|
||||||
|
pkgs-unstable = mkPkgsUnstable system;
|
||||||
|
base = mkNixOsBase {
|
||||||
|
inherit system pkgs;
|
||||||
|
hostname = "foxhut";
|
||||||
|
};
|
||||||
|
networking = mkNixOsNetworking {
|
||||||
|
inherit pkgs;
|
||||||
|
use-iwd = false;
|
||||||
|
};
|
||||||
|
graphical = mkNixOsGraphical {
|
||||||
|
inherit pkgs pkgs-unstable niri;
|
||||||
|
background = "pan-wire-3.png";
|
||||||
|
use-display-manager = true;
|
||||||
|
};
|
||||||
|
xenia =
|
||||||
|
let
|
||||||
|
system = "aarch64-linux";
|
||||||
|
pkgs = mkPkgs system;
|
||||||
|
home = mkHome {
|
||||||
|
username = "xenia";
|
||||||
|
home-dir = "/home/xenia";
|
||||||
|
prompt-color = 205;
|
||||||
|
inherit system pkgs;
|
||||||
|
};
|
||||||
|
pc = mkPC { inherit system pkgs; };
|
||||||
|
in { home = home; pc = pc; };
|
||||||
|
asahi-firmware = builtins.fetchGit {
|
||||||
|
url = "git@githug.xyz:xenia/asahi-firmware.git";
|
||||||
|
ref = "main";
|
||||||
|
rev = "012d29d4b4d7148414bb649c39805479c7a4327b";
|
||||||
|
};
|
||||||
|
tiny-dfr = import ./nixos/tiny-dfr.nix { pkgs = pkgs-unstable; };
|
||||||
|
in
|
||||||
|
nixpkgs.lib.nixosSystem {
|
||||||
|
inherit system;
|
||||||
|
modules = [
|
||||||
|
nixos-apple-silicon.nixosModules.apple-silicon-support
|
||||||
|
niri.nixosModules.niri
|
||||||
|
./nixos/machines/foxhut/hardware.nix
|
||||||
|
(import ./nixos/machines/foxhut/boot.nix { inherit pkgs pkgs-unstable asahi-firmware; })
|
||||||
|
(import ./nixos/machines/foxhut/machine.nix { inherit pkgs pkgs-unstable asahi-firmware; })
|
||||||
|
base
|
||||||
|
networking
|
||||||
|
graphical
|
||||||
|
tiny-dfr
|
||||||
|
home-manager.nixosModules.home-manager
|
||||||
|
{
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
home-manager.users.xenia = xenia.home;
|
||||||
|
}
|
||||||
|
{ home-manager.users.xenia = xenia.pc; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
nixosConfigurations.gender-station =
|
nixosConfigurations.gender-station =
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user