1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-02 19:53:07 +00:00
This commit is contained in:
Rae 5e 2025-01-18 15:01:56 -05:00
parent c9e6ab6e8b
commit 377c3d4a6b
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
4 changed files with 28 additions and 17 deletions

View file

@ -4,6 +4,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=latest";
home-manager = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
@ -20,7 +21,7 @@
};
};
outputs = { self, nixpkgs, home-manager, ... }@inputs: {
outputs = { self, nixpkgs, home-manager, nix-flatpak, ... }@inputs: {
nixosConfigurations =
let
system = hostname: {
@ -29,6 +30,7 @@
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
nix-flatpak.nixosModules.nix-flatpak
./hosts/${hostname}/configuration.nix
];
};