This commit is contained in:
2026-02-24 23:39:07 +01:00
14 changed files with 254 additions and 104 deletions

View File

@@ -8,7 +8,13 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
catppuccin.url = "github:catppuccin/nix";
wallpapers = {
url = "github:orangci/walls-catppuccin-mocha";
flake = false;
};
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
@@ -21,14 +27,27 @@
home-manager,
catppuccin,
nixvim,
wallpapers,
...
}@inputs:
let
username = "szymon";
# for git
email = "szymon_jozef@proton.me";
full_name = "Szymon P";
userConfig = {
username = "szymon";
# for git
email = "szymon_jozef@proton.me";
fullName = "Szymon P";
# your public ssh key
signingKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKxyiqawA95AlLjXGd99sQCVR2rDq2/D7PG/vz7sZv5G";
mainMonitor = "DP-1"; # only for some applications: you still need to set hyprland monitors yourself!
statusBar = "ashell"; # available: ashell|waybar
pathConfig = {
wallpaper = "Obrazy/tapety/catppuccin";
};
};
in
{
homeConfigurations = {
@@ -36,10 +55,15 @@
pkgs = import nixpkgs { system = "x86_64-linux"; };
extraSpecialArgs = {
inherit
<<<<<<< HEAD
username
email
full_name
inputs
=======
inputs
userConfig
>>>>>>> c77553344515b404d765c04e1e472dac1cf4bb94
;
isNixOS = false;
};
@@ -54,17 +78,22 @@
pkgs = import nixpkgs { system = "x86_64-linux"; };
extraSpecialArgs = {
inherit
<<<<<<< HEAD
username
email
full_name
inputs
=======
inputs
userConfig
>>>>>>> c77553344515b404d765c04e1e472dac1cf4bb94
;
isNixOS = true;
};
modules = [
./home.nix
catppuccin.homeModules.catppuccin
nixvim.homeManagerModules.nixvim
nixvim.homeModules.nixvim
];
};
};