mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-26 00:18:28 +02:00
started to configure colors
This commit is contained in:
parent
bc562bc58d
commit
3a2d061875
3 changed files with 90 additions and 58 deletions
|
@ -7,9 +7,10 @@
|
|||
sops-nix.url = github:Mic92/sops-nix;
|
||||
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
awesome-config.url=github:therealr5/awesome-config;
|
||||
nix-colors.url=github:Misterio77/nix-colors;
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, sops-nix, awesome-config }: {
|
||||
outputs = { self, nixpkgs, home-manager, sops-nix, awesome-config, nix-colors }: {
|
||||
nixosConfigurations = {
|
||||
thinkpad = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
|
@ -20,7 +21,11 @@
|
|||
sops-nix.nixosModules.sops
|
||||
{
|
||||
home-manager.users.rouven = {
|
||||
imports = [ awesome-config.nixosModules.awesome ];
|
||||
imports = [
|
||||
awesome-config.nixosModules.awesome
|
||||
nix-colors.homeManagerModule
|
||||
];
|
||||
config.colorScheme = nix-colors.colorSchemes.dracula;
|
||||
};
|
||||
}
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue