added superfile to homemanager

This commit is contained in:
steven carpenter 2025-07-19 11:56:29 -04:00
parent fb8665ef70
commit 54eb941306
5 changed files with 23 additions and 7 deletions

6
flake.lock generated
View file

@ -838,11 +838,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1750622754, "lastModified": 1752436162,
"narHash": "sha256-kMhs+YzV4vPGfuTpD3mwzibWUE6jotw5Al2wczI0Pv8=", "narHash": "sha256-Kt1UIPi7kZqkSc5HVj6UY5YLHHEzPBkgpNUByuyxtlw=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c7ab75210cb8cb16ddd8f290755d9558edde7ee1", "rev": "dfcd5b901dbab46c9c6e80b265648481aafb01f8",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -83,7 +83,7 @@
# Services # Services
services = { services = {
pcscd.enable = true; pcscd.enable = true;
blueman.enable = true; blueman.enable = false;
pulseaudio.enable = false; pulseaudio.enable = false;
printing.enable = true; printing.enable = true;
xserver = { xserver = {
@ -118,7 +118,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
gparted # Drive Partition Manger gparted # Drive Partition Manger
bluez # Bluetooth Stack bluez # Bluetooth Stack
blueman # Bluetooth Management # blueman # Bluetooth Management
home-manager # Dotfiles Management home-manager # Dotfiles Management
pkg-config # Determine lib locations for linking during compliation pkg-config # Determine lib locations for linking during compliation
ripgrep # regex parser written in rust ripgrep # regex parser written in rust
@ -146,6 +146,7 @@
glow # Markdown renderer for terminal glow # Markdown renderer for terminal
inputs.sk-extract.packages.${system}.default inputs.sk-extract.packages.${system}.default
inputs.yunodo.packages.${system}.default inputs.yunodo.packages.${system}.default
signal-desktop
]; ];
# Fonts # Fonts

View file

@ -13,6 +13,7 @@
./zoxide.nix ./zoxide.nix
./zsh.nix ./zsh.nix
./ssh.nix ./ssh.nix
./superfile.nix
]; ];
speccon18.hm.alacritty.enable = true; speccon18.hm.alacritty.enable = true;
speccon18.hm.direnv.enable = true; speccon18.hm.direnv.enable = true;
@ -26,6 +27,7 @@
speccon18.hm.zsh.enable = true; speccon18.hm.zsh.enable = true;
speccon18.hm.rio.enable = false; speccon18.hm.rio.enable = false;
speccon18.hm.ssh.enable = true; speccon18.hm.ssh.enable = true;
speccon18.hm.superfile.enable = true;
# Home Manager needs a bit of information about you and the paths it should # Home Manager needs a bit of information about you and the paths it should
# manage. # manage.
home = { home = {
@ -48,6 +50,7 @@
gimp gimp
vlc vlc
atuin atuin
superfile
#rio #rio
#imgcat #imgcat

View file

@ -0,0 +1,12 @@
{ pkgs, config, lib, ... }:
{
options.speccon18.hm.superfile.enable = lib.mkEnableOption "enables specs superfile config";
config = lib.mkIf config.speccon18.hm.superfile.enable {
programs.superfile = {
enable = true;
package = pkgs.superfile;
};
};
}

View file

@ -20,8 +20,8 @@
ls = "eza -l"; ls = "eza -l";
lsa = "eza -al"; lsa = "eza -al";
grep = "rg"; grep = "rg";
osrb = "sudo nixos-rebuild $1 --flake ~/nixos-config/#katana"; osrb = "sudo nixos-rebuild $1 --flake ~/Documents/code/nix/nixos-config/#katana";
tmux = "zellij"; nvim-cfg = "nvim /home/speccon18/.config/nvim/";
}; };
localVariables = { localVariables = {