This commit is contained in:
2026-02-23 19:51:37 +01:00
parent e55ae7e6c1
commit e690f58b9a
6 changed files with 64 additions and 25 deletions

25
flake.lock generated
View File

@@ -46,11 +46,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1771683283, "lastModified": 1771851181,
"narHash": "sha256-WxAEkAbo8dP7qiyPM6VN4ZGAxfuBVlNBNPkrqkrXVEc=", "narHash": "sha256-gFgE6mGUftwseV3DUENMb0k0EiHd739lZexPo5O/sdQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "c6ed3eab64d23520bcbb858aa53fe2b533725d4a", "rev": "9a4b494b1aa1b93d8edf167f46dc8e0c0011280c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -118,7 +118,8 @@
"catppuccin": "catppuccin", "catppuccin": "catppuccin",
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"nixvim": "nixvim" "nixvim": "nixvim",
"wallpapers": "wallpapers"
} }
}, },
"systems": { "systems": {
@@ -135,6 +136,22 @@
"repo": "default", "repo": "default",
"type": "github" "type": "github"
} }
},
"wallpapers": {
"flake": false,
"locked": {
"lastModified": 1762937381,
"narHash": "sha256-N+MZHSRcwOldS5Ai8B3YfKquKs9oeUW/GkV1iKM5+i8=",
"owner": "orangci",
"repo": "walls-catppuccin-mocha",
"rev": "7bfdf10d16ad3a689f9f0cf3a0930da3d1a245a8",
"type": "github"
},
"original": {
"owner": "orangci",
"repo": "walls-catppuccin-mocha",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View File

@@ -7,7 +7,13 @@
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
catppuccin.url = "github:catppuccin/nix"; catppuccin.url = "github:catppuccin/nix";
wallpapers = {
url = "github:orangci/walls-catppuccin-mocha";
flake = false;
};
nixvim = { nixvim = {
url = "github:nix-community/nixvim"; url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@@ -20,21 +26,31 @@
home-manager, home-manager,
catppuccin, catppuccin,
nixvim, nixvim,
wallpapers,
... ...
}: }@inputs:
let let
username = "szymon"; userConfig = {
# for git username = "szymon";
email = "szymon_jozef@proton.me"; # for git
full_name = "Szymon P"; email = "szymon_jozef@proton.me";
fullName = "Szymon P";
};
pathConfig = {
wallpaper = "Obrazy/tapety/catppuccin";
};
in in
{ {
homeConfigurations = { homeConfigurations = {
"arch" = home-manager.lib.homeManagerConfiguration { "arch" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { system = "x86_64-linux"; }; pkgs = import nixpkgs { system = "x86_64-linux"; };
extraSpecialArgs = { extraSpecialArgs = {
inherit username email full_name; inherit
inputs
userConfig
pathConfig
;
isNixOS = false; isNixOS = false;
}; };
modules = [ modules = [
@@ -47,13 +63,17 @@
"nixos" = home-manager.lib.homeManagerConfiguration { "nixos" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { system = "x86_64-linux"; }; pkgs = import nixpkgs { system = "x86_64-linux"; };
extraSpecialArgs = { extraSpecialArgs = {
inherit username email full_name; inherit
inputs
userConfig
pathConfig
;
isNixOS = true; isNixOS = true;
}; };
modules = [ modules = [
./home.nix ./home.nix
catppuccin.homeModules.catppuccin catppuccin.homeModules.catppuccin
nixvim.homeManagerModules.nixvim nixvim.homeModules.nixvim
]; ];
}; };
}; };

View File

@@ -1,12 +1,14 @@
{ {
pkgs, pkgs,
username, inputs,
userConfig,
pathConfig,
... ...
}: }:
{ {
home.username = username; home.username = userConfig.username;
home.homeDirectory = "/home/${username}"; home.homeDirectory = "/home/${userConfig.username}";
nix = { nix = {
package = pkgs.nix; package = pkgs.nix;
@@ -60,6 +62,7 @@
# === SCRIPTS IMPORT === # === SCRIPTS IMPORT ===
home.file = { home.file = {
".local/bin".source = ./scripts; ".local/bin".source = ./scripts;
${pathConfig.wallpaper}.source = inputs.wallpapers;
}; };
# === VARS === # === VARS ===

View File

@@ -1,7 +1,6 @@
{ {
pkgs, pkgs,
full_name, userConfig,
email,
... ...
}: }:
@@ -14,8 +13,8 @@
enable = true; enable = true;
settings = { settings = {
user = { user = {
name = full_name; name = userConfig.fullName;
email = email; email = userConfig.email;
}; };
init.defaultBranch = "master"; init.defaultBranch = "master";
push.autoSetupRemote = true; push.autoSetupRemote = true;
@@ -23,7 +22,7 @@
}; };
signing = { signing = {
key = email; key = userConfig.email;
signByDefault = true; signByDefault = true;
}; };

View File

@@ -1,4 +1,4 @@
{ username, ... }: { userConfig, ... }:
{ {
services.ssh-agent.enable = true; services.ssh-agent.enable = true;
@@ -10,13 +10,13 @@
matchBlocks = { matchBlocks = {
"dmowski" = { "dmowski" = {
hostname = "192.168.0.30"; hostname = "192.168.0.30";
user = username; user = userConfig.username;
port = 22; port = 22;
identityFile = "~/.ssh/dmowski"; identityFile = "~/.ssh/dmowski";
}; };
"aur.archlinux.org" = { "aur.archlinux.org" = {
user = username; user = userConfig.username;
identityFile = "~/.ssh/aur"; identityFile = "~/.ssh/aur";
}; };

View File

@@ -1,7 +1,7 @@
{ {
lib, lib,
isNixOS, isNixOS,
username, userConfig,
... ...
}: }:
@@ -14,7 +14,7 @@
fullscreen = true; fullscreen = true;
early-exit = true; early-exit = true;
initial-tool = "crop"; initial-tool = "crop";
output-filename = "/home/${username}/Obrazy/zrzuty/%d-%m-%Y_%H:%M:%S.png"; output-filename = "/home/${userConfig.username}/Obrazy/zrzuty/%d-%m-%Y_%H:%M:%S.png";
save-after-copy = true; save-after-copy = true;
copy-command = "wl-copy"; copy-command = "wl-copy";
disable-notifications = false; disable-notifications = false;