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": {
"locked": {
"lastModified": 1750622754,
"narHash": "sha256-kMhs+YzV4vPGfuTpD3mwzibWUE6jotw5Al2wczI0Pv8=",
"lastModified": 1752436162,
"narHash": "sha256-Kt1UIPi7kZqkSc5HVj6UY5YLHHEzPBkgpNUByuyxtlw=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "c7ab75210cb8cb16ddd8f290755d9558edde7ee1",
"rev": "dfcd5b901dbab46c9c6e80b265648481aafb01f8",
"type": "github"
},
"original": {

View file

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

View file

@ -13,6 +13,7 @@
./zoxide.nix
./zsh.nix
./ssh.nix
./superfile.nix
];
speccon18.hm.alacritty.enable = true;
speccon18.hm.direnv.enable = true;
@ -26,6 +27,7 @@
speccon18.hm.zsh.enable = true;
speccon18.hm.rio.enable = false;
speccon18.hm.ssh.enable = true;
speccon18.hm.superfile.enable = true;
# Home Manager needs a bit of information about you and the paths it should
# manage.
home = {
@ -48,6 +50,7 @@
gimp
vlc
atuin
superfile
#rio
#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";
lsa = "eza -al";
grep = "rg";
osrb = "sudo nixos-rebuild $1 --flake ~/nixos-config/#katana";
tmux = "zellij";
osrb = "sudo nixos-rebuild $1 --flake ~/Documents/code/nix/nixos-config/#katana";
nvim-cfg = "nvim /home/speccon18/.config/nvim/";
};
localVariables = {