configuring
This commit is contained in:
parent
09eb9cbabb
commit
4c195e7482
3 changed files with 44 additions and 24 deletions
13
flake.nix
13
flake.nix
|
@ -13,15 +13,24 @@
|
|||
|
||||
nix-flatpak.url = "github:gmodena/nix-flatpak"; # unstable branch. Use github:gmodena/nix-flatpak/?ref=<tag> to pin releases.
|
||||
|
||||
affinity-nix.url = "github:mrshmllow/affinity-nix/main";
|
||||
affinity-nix = {
|
||||
url = "github:mrshmllow/affinity-nix/main";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
kmonad = {
|
||||
url = "git+https://github.com/kmonad/kmonad?submodules=1&dir=nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{self, nixpkgs, home-manager, nix-flatpak, ... }: {
|
||||
outputs = inputs@{self, nixpkgs, nixpkgs-stable, home-manager, nix-flatpak, affinity-nix, kmonad, ... }: {
|
||||
nixosConfigurations = {
|
||||
eddie = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
kmonad.nixosModules.default
|
||||
./system/eddie/configuration.nix
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue