This commit is contained in:
Hadi
2024-10-07 12:02:26 +02:00
parent 75f2c2c7c6
commit 3aa0fb8a22
59 changed files with 109 additions and 249 deletions

View File

@@ -12,6 +12,7 @@
../../home/programs/git
../../home/programs/spicetify
../../home/programs/nextcloud
../../home/programs/yazi
# Scripts
../../home/scripts # All scripts
@@ -31,7 +32,7 @@
home = {
inherit (config.var) username;
inherit (config.var) homeDirectory;
homeDirectory = "/home/" + config.var.username;
packages = with pkgs; [
# Apps

View File

@@ -1,8 +1,6 @@
{ pkgs, inputs, ... }: {
imports = [ inputs.sops-nix.homeManagerModules.sops ];
home.packages = with pkgs; [ sops age ];
sops = {
age.keyFile = "/home/hadi/.config/sops/age/keys.txt";
defaultSopsFile = ./secrets.yaml;
@@ -16,4 +14,5 @@
};
systemd.user.services.mbsync.Unit.After = [ "sops-nix.service" ];
home.packages = with pkgs; [ sops age ];
}

View File

@@ -4,8 +4,7 @@
config.var = {
hostname = "nixy";
username = "hadi";
homeDirectory = "/home/" + config.var.username;
configDirectory = config.var.homeDirectory + "/.config/nixos";
configDirectory = "/home/" + config.var.username + "/.config/nixos";
keyboardLayout = "fr";
@@ -27,7 +26,6 @@
# change the sops configuration if you want to enable that:
sops = true;
# theme = import ../themes/nixy.nix; # select your theme here
theme = {
rounding = 15;
gaps-in = 10;
@@ -36,13 +34,13 @@
inactive-opacity = 0.89;
blur = true;
border-size = 3;
animation-speed = "fast"; # "fast" | "medium" | "slow"
animation-speed = "medium"; # "fast" | "medium" | "slow"
fetch = "nerdfetch"; # "nerdfetch" | "neofetch" | "pfetch" | "none"
bar = {
transparent = false;
floating = true;
font-size = 16;
font-size = 13;
};
};
};