update nixosConfigurations
This commit is contained in:
parent
93b7000b39
commit
f63ccb92ca
14
flake.nix
14
flake.nix
@ -15,8 +15,7 @@
|
||||
installedPackages = (import ./installed-packages { inherit pkgs; });
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
nixos = nixpkgs.lib.nixosSystem {
|
||||
nixosConfigurations.nixos-wsl = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
nixos-wsl.nixosModules.default
|
||||
@ -37,7 +36,7 @@
|
||||
];
|
||||
specialArgs = { inherit inputs; };
|
||||
};
|
||||
th0nkpad-nixos = nixpkgs.lib.nixosSystem {
|
||||
nixosConfigurations.th0nkpad-nixos = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
./systems/th0nkpad-nixos/configuration.nix
|
||||
@ -52,10 +51,17 @@
|
||||
enable = true;
|
||||
package = pkgs.nix-ld-rs;
|
||||
};
|
||||
services.flatpak.enable = true;
|
||||
systemd.services.flatpak-repo = {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
path = [ pkgs.flatpak ];
|
||||
script = ''
|
||||
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||
'';
|
||||
};
|
||||
}
|
||||
];
|
||||
specialArgs = { inherit inputs; };
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@ -89,6 +89,8 @@
|
||||
description = "Andreas";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
packages = with pkgs; [
|
||||
flatpak
|
||||
gnome-software
|
||||
# thunderbird
|
||||
];
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user