Former-commit-id: 81ab14b256
This commit is contained in:
Hadi
2024-05-02 15:40:12 +02:00
parent 8e4d046365
commit fa0aa29974
86 changed files with 227 additions and 146 deletions

View File

@@ -1,29 +1,12 @@
{ config, pkgs, ... }: {
{ pkgs, ... }:
let variable = import ../variables.nix;
in {
imports = [
./hyprland
./nvim
./waybar
./kitty
./dunst
./wlogout
./wofi
./qutebrowser
./git
./shell
./misc
./scripts
./neofetch
./spicetify
./theme
./wallpapers
./lf
./sops # REMOVE
];
imports = [ ./themes ./system ./scripts ./apps ];
home = {
username = "hadi"; # CHANGEME
homeDirectory = "/home/hadi"; # CHANGEME
username = variable.username;
homeDirectory = variable.homeDirectory;
packages = with pkgs; [
swappy
@@ -49,6 +32,7 @@
bc
gcc
blueman
zip
unzip
xdg_utils
tldr
@@ -68,7 +52,7 @@
firefox
];
stateVersion = "23.11";
stateVersion = variable.stateVersion;
};
programs.home-manager.enable = true;
}