moved awesome to another repo

This commit is contained in:
Rouven Seifert 2023-01-04 16:15:56 +01:00
parent 5ef31bd3f8
commit 6bf744f46c
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
8 changed files with 27 additions and 508 deletions

View file

@ -6,9 +6,10 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs";
sops-nix.url = github:Mic92/sops-nix;
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
awesome-config.url=github:therealr5/awesome-config;
};
outputs = { self, nixpkgs, home-manager, sops-nix }: {
outputs = { self, nixpkgs, home-manager, sops-nix, awesome-config }: {
nixosConfigurations = {
thinkpad = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
@ -17,6 +18,11 @@
./users/rouven
home-manager.nixosModules.home-manager
sops-nix.nixosModules.sops
{
home-manager.users.rouven = {
imports = [ awesome-config.nixosModules.awesome ];
};
}
];
};
};