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

@@ -0,0 +1,8 @@
{ inputs, ... }: {
imports = [ inputs.nixcord.homeManagerModules.nixcord ];
programs.nixcord = {
enable = true;
config = { frameless = true; };
};
}

View File

@@ -1,6 +1,6 @@
# My shell configuration
{ pkgs, lib, config, ... }:
let fetch = config.var.theme.fetch; # neofetch, nerdfetch, pfetch
let fetch = config.theme.fetch; # neofetch, nerdfetch, pfetch
in {
home.packages = with pkgs; [ bat ripgrep tldr sesh ];

View File

@@ -0,0 +1,6 @@
{ inputs, pkgs, ... }: {
home.packages = [
inputs.superfile.packages.${pkgs.system}.default # CLI file manager
];
}