add nixcord

Former-commit-id: 41dacd47a5
This commit is contained in:
Hadi
2025-03-04 20:57:33 +01:00
parent 5fd0da5327
commit a38304d73b
23 changed files with 443 additions and 561 deletions

View File

@@ -19,7 +19,7 @@
../../nixos/variables-config.nix
# Choose your theme here
../../themes/stylix/yoru.nix
# ../../themes/stylix/yoru.nix
./hardware-configuration.nix
./variables.nix

View File

@@ -17,6 +17,8 @@
../../home/programs/lazygit
../../home/programs/zen
../../home/programs/duckduckgo-colorscheme
../../home/programs/superfile
../../home/programs/discord
# Scripts
../../home/scripts # All scripts
@@ -34,6 +36,8 @@
../../home/system/udiskie
../../home/system/clipman
# ../../themes/stylix/yoru.nix
./secrets # CHANGEME: You should probably remove this line, this is where I store my secrets
];
@@ -43,7 +47,6 @@
packages = with pkgs; [
# Apps
discord # Chat
bitwarden # Password manager
vlc # Video player
blanket # White-noise app

View File

@@ -1,5 +1,5 @@
{ config, ... }: {
imports = [ ../../nixos/variables-config.nix ];
imports = [ ../../nixos/variables-config.nix ../../themes/yoru.nix ];
config.var = {
hostname = "nixy";
@@ -23,6 +23,6 @@
autoGarbageCollector = true;
# Choose your theme variables here
theme = import ../../themes/var/yoru.nix;
# theme = import ../../themes/var/2025.nix;
};
}