mirror of
https://codeberg.org/muon/home.git
synced 2026-07-03 23:49:35 +00:00
Fix mups
This commit is contained in:
parent
0e00821e0e
commit
bbc1b6f794
8 changed files with 66 additions and 94 deletions
27
flake.nix
27
flake.nix
|
|
@ -9,9 +9,13 @@
|
|||
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
impermanence.url = "github:nix-community/impermanence";
|
||||
impermanence.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
stylix.url = "github:danth/stylix";
|
||||
stylix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
nix-alien.url = "github:thiagokokada/nix-alien";
|
||||
nix-alien.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
nvf = {
|
||||
url = "github:NotAShelf/nvf";
|
||||
|
|
@ -24,11 +28,14 @@
|
|||
};
|
||||
|
||||
nix-minecraft.url = "git+https://codeberg.org/nix-astral/nix-minecraft.git";
|
||||
nix-minecraft.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
# nix-minecraft.url = "github:Infinidoge/nix-minecraft";
|
||||
valheim-server.url = "github:kmjayadeep/valheim-server-flake";
|
||||
valheim-server.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
nix-flatpak.url = "github:gmodena/nix-flatpak?ref=latest";
|
||||
nix-flatpak.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs = inputs @ {
|
||||
|
|
@ -53,9 +60,10 @@
|
|||
(builtins.readDir ./hosts));
|
||||
|
||||
nixosConfigs = builtins.listToAttrs (map (host: {
|
||||
name = host;
|
||||
value = utils.mkHost ./hosts/${host}/configuration.nix;
|
||||
}) hosts);
|
||||
name = host;
|
||||
value = utils.mkHost ./hosts/${host}/configuration.nix;
|
||||
})
|
||||
hosts);
|
||||
in {
|
||||
nixosConfigurations = nixosConfigs;
|
||||
|
||||
|
|
@ -65,12 +73,13 @@
|
|||
# osConfig is injected so all modules using it continue to work.
|
||||
# Use: home-manager switch --flake '.#muon@<host>'
|
||||
homeConfigurations = builtins.listToAttrs (map (host: {
|
||||
name = "muon@${host}";
|
||||
value = utils.mkHome {
|
||||
hostConfig = nixosConfigs.${host};
|
||||
homeFile = ./hosts/${host}/home.nix;
|
||||
};
|
||||
}) hosts);
|
||||
name = "muon@${host}";
|
||||
value = utils.mkHome {
|
||||
hostConfig = nixosConfigs.${host};
|
||||
homeFile = ./hosts/${host}/home.nix;
|
||||
};
|
||||
})
|
||||
hosts);
|
||||
|
||||
colmena = {
|
||||
meta = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue