initial halfway working config

This commit is contained in:
Rouven Seifert 2023-01-20 10:46:28 +01:00
parent d0371f85b3
commit c59157a753
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
8 changed files with 301 additions and 22 deletions

View file

@ -4,12 +4,13 @@
nixpkgs.url = github:nixos/nixpkgs/nixos-unstable;
home-manager.url = github:nix-community/home-manager;
home-manager.inputs.nixpkgs.follows = "nixpkgs";
hyprland.url = github:hyprwm/Hyprland;
sops-nix.url = github:Mic92/sops-nix;
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
nix-colors.url = github:Misterio77/nix-colors;
};
outputs = { self, nixpkgs, home-manager, sops-nix, nix-colors }: {
outputs = { self, nixpkgs, home-manager, hyprland, sops-nix, nix-colors }: {
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt;
nixosConfigurations = {
thinkpad = nixpkgs.lib.nixosSystem {
@ -23,6 +24,7 @@
home-manager.users.rouven = {
imports = [
nix-colors.homeManagerModule
hyprland.homeManagerModules.default
];
config.colorScheme = nix-colors.colorSchemes.dracula;
};