This commit is contained in:
2026-02-23 13:51:11 +01:00
parent e7aabcb4a7
commit 2b8f7383ad
4 changed files with 519 additions and 8 deletions

View File

@@ -2,6 +2,7 @@
description = "Home manager config";
inputs = {
hyprland.url = "github:hyprwm/Hyprland";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
@@ -21,7 +22,7 @@
catppuccin,
nixvim,
...
}:
}@inputs:
let
username = "szymon";
@@ -34,7 +35,12 @@
"arch" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { system = "x86_64-linux"; };
extraSpecialArgs = {
inherit username email full_name;
inherit
username
email
full_name
inputs
;
isNixOS = false;
};
modules = [
@@ -47,7 +53,12 @@
"nixos" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { system = "x86_64-linux"; };
extraSpecialArgs = {
inherit username email full_name;
inherit
username
email
full_name
inputs
;
isNixOS = true;
};
modules = [