config
This commit is contained in:
parent
4b5acfbfc4
commit
0eacb78197
3 changed files with 24 additions and 12 deletions
11
flake.nix
11
flake.nix
|
@ -13,12 +13,6 @@
|
|||
|
||||
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";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# flake = true;
|
||||
# };
|
||||
|
||||
kmonad = {
|
||||
url = "git+https://github.com/kmonad/kmonad?submodules=1&dir=nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
@ -30,7 +24,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{self, nixpkgs, nixpkgs-stable, home-manager, nix-flatpak, kmonad, musnix, ... }: {
|
||||
outputs = {self, nixpkgs, nixpkgs-stable, home-manager, nix-flatpak, kmonad, musnix, ... } @inputs: {
|
||||
nixosConfigurations = {
|
||||
eddie = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
|
@ -47,6 +41,9 @@
|
|||
homeConfigurations = {
|
||||
"emenel" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
|
||||
modules = [
|
||||
nix-flatpak.homeManagerModules.nix-flatpak
|
||||
./home/home.nix
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue