Compare commits
5 Commits
obsidian
...
shell-inhi
Author | SHA1 | Date | |
---|---|---|---|
4feb5b89e8 | |||
29feb9223e | |||
7bc7749f51 | |||
51beed138e | |||
6ff4e13b03 |
12
flake.lock
generated
12
flake.lock
generated
@@ -64,11 +64,11 @@
|
|||||||
"zon2nix": "zon2nix"
|
"zon2nix": "zon2nix"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1753816554,
|
"lastModified": 1754941490,
|
||||||
"narHash": "sha256-eyFfBXb5IJaNTGTdkjpWKSMTs8wiJ0i+9n5jUKtVFa4=",
|
"narHash": "sha256-2AJf0q4u1zakqjr0y4dCyqzdDSil8P5m2YpZxAAzJJw=",
|
||||||
"owner": "ghostty-org",
|
"owner": "ghostty-org",
|
||||||
"repo": "ghostty",
|
"repo": "ghostty",
|
||||||
"rev": "c78d32074ebab14d2060e5cd3c7667cbe37ab8ee",
|
"rev": "5bf632e9cc0e77a578bad983b0cbdf0451ce87d4",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -129,11 +129,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1753749649,
|
"lastModified": 1754767907,
|
||||||
"narHash": "sha256-+jkEZxs7bfOKfBIk430K+tK9IvXlwzqQQnppC2ZKFj4=",
|
"narHash": "sha256-8OnUzRQZkqtUol9vuUuQC30hzpMreKptNyET2T9lB6g=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "1f08a4df998e21f4e8be8fb6fbf61d11a1a5076a",
|
"rev": "c5f08b62ed75415439d48152c2a784e36909b1bc",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
15
flake.nix
15
flake.nix
@@ -2,16 +2,11 @@
|
|||||||
description = "Wyatt's nix configuration suite";
|
description = "Wyatt's nix configuration suite";
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
||||||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
||||||
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.6.0";
|
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.6.0";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager/release-25.05";
|
url = "github:nix-community/home-manager/release-25.05";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
home-manager-unstable = {
|
|
||||||
url = "https://github.com/nix-community/home-manager";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
|
||||||
};
|
|
||||||
darwin = {
|
darwin = {
|
||||||
url = "github:lnl7/nix-darwin/nix-darwin-25.05";
|
url = "github:lnl7/nix-darwin/nix-darwin-25.05";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
@@ -22,11 +17,9 @@
|
|||||||
outputs = inputs @ {
|
outputs = inputs @ {
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
nixpkgs-unstable,
|
|
||||||
nix-flatpak,
|
nix-flatpak,
|
||||||
darwin,
|
darwin,
|
||||||
home-manager,
|
home-manager,
|
||||||
home-manager-unstable,
|
|
||||||
ghostty,
|
ghostty,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
@@ -35,10 +28,6 @@
|
|||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
inherit userName userEmail ghostty;
|
inherit userName userEmail ghostty;
|
||||||
};
|
};
|
||||||
|
|
||||||
obsidianOverlay = final: prev: {
|
|
||||||
obsidian = nixpkgs-unstable.legacyPackages.${final.system}.obsidian;
|
|
||||||
};
|
|
||||||
in {
|
in {
|
||||||
meta = import ./meta;
|
meta = import ./meta;
|
||||||
|
|
||||||
@@ -77,10 +66,6 @@
|
|||||||
./modules/common
|
./modules/common
|
||||||
./modules/machine/cloud
|
./modules/machine/cloud
|
||||||
|
|
||||||
{
|
|
||||||
nixpkgs.overlays = [ obsidianOverlay ];
|
|
||||||
}
|
|
||||||
|
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
config,
|
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
userName,
|
userName,
|
||||||
@@ -14,7 +13,7 @@
|
|||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
# Import sub modules
|
# Import sub modules
|
||||||
imports = map (module: import module {inherit config lib pkgs dirs userName userEmail ghostty;}) [
|
imports = map (module: import module {inherit lib pkgs dirs userName userEmail ghostty;}) [
|
||||||
./atuin.nix
|
./atuin.nix
|
||||||
./shell.nix
|
./shell.nix
|
||||||
./packages
|
./packages
|
||||||
@@ -28,7 +27,6 @@ in {
|
|||||||
./browser.nix
|
./browser.nix
|
||||||
./zellij.nix
|
./zellij.nix
|
||||||
./bat.nix
|
./bat.nix
|
||||||
./obsidian.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Home Manager needs a bit of information about you and the
|
# Home Manager needs a bit of information about you and the
|
||||||
@@ -58,7 +56,7 @@ in {
|
|||||||
size = 22;
|
size = 22;
|
||||||
};
|
};
|
||||||
|
|
||||||
stateVersion = "25.05";
|
stateVersion = "24.11";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Let Home Manager install and manage itself.
|
# Let Home Manager install and manage itself.
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
extraConfig = {
|
extraConfig = {
|
||||||
init.defaultBranch = "master";
|
init.defaultBranch = "master";
|
||||||
push.autoSetupRemote = true;
|
push.autoSetupRemote = true;
|
||||||
pull.merge = true;
|
pull.rebase = false;
|
||||||
merge.tool = "nvimdiff";
|
merge.tool = "nvimdiff";
|
||||||
mergetool.keepBackup = false;
|
mergetool.keepBackup = false;
|
||||||
};
|
};
|
||||||
|
@@ -1,53 +0,0 @@
|
|||||||
{ config, home-manager-unstable, pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
obsidian
|
|
||||||
obsidian-export
|
|
||||||
];
|
|
||||||
programs.obsidian = {
|
|
||||||
enable = true;
|
|
||||||
package =
|
|
||||||
vaults = {
|
|
||||||
"notes" = {
|
|
||||||
enable = true;
|
|
||||||
target = "${config.home.homeDirectory}/Documents/obsidian/notes";
|
|
||||||
};
|
|
||||||
"work-notes" = {
|
|
||||||
enable = true;
|
|
||||||
target = "${config.home.homeDirectory}/Documents/obsidian/work-notes";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
# defaultSettings = {
|
|
||||||
# themes = [ "catppuccin" ];
|
|
||||||
# };
|
|
||||||
};
|
|
||||||
|
|
||||||
home.activation.obsidianRepos = config.lib.dag.entryAfter ["writeBoundary"] ''
|
|
||||||
REPOS_DIR="${config.home.homeDirectory}/Documents/obsidian"
|
|
||||||
|
|
||||||
# Create the repos directory if it doesn't exist
|
|
||||||
mkdir -p "$REPOS_DIR"
|
|
||||||
|
|
||||||
# Function to clone or update a repository
|
|
||||||
clone_or_update() {
|
|
||||||
local repo_url="$1"
|
|
||||||
local vault_name="$2"
|
|
||||||
local vault_path="$REPOS_DIR/$vault_name"
|
|
||||||
|
|
||||||
if [ -d "$vault_path/.git" ]; then
|
|
||||||
echo "Updating existing vault: $vault_name"
|
|
||||||
cd "$vault_path"
|
|
||||||
${pkgs.git}/bin/git pull origin main || ${pkgs.git}/bin/git pull origin master || true
|
|
||||||
else
|
|
||||||
echo "Cloning new vault: $vault_name"
|
|
||||||
rm -rf "$vault_path" # Remove if exists but not a git repo
|
|
||||||
${pkgs.git}/bin/git clone "$repo_url" "$vault_path" || true
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Clone repositories
|
|
||||||
clone_or_update "https://scm.wyattjmiller.com/NoteFolio/notes.git" "notes"
|
|
||||||
clone_or_update "https://scm.wyattjmiller.com/NoteFolio/work-notes.git" "work-notes"
|
|
||||||
|
|
||||||
echo "Obsidian repository vaults setup complete in $REPOS_DIR"
|
|
||||||
'';
|
|
||||||
}
|
|
@@ -23,6 +23,7 @@
|
|||||||
fh
|
fh
|
||||||
aria2
|
aria2
|
||||||
yt-dlp
|
yt-dlp
|
||||||
|
obsidian
|
||||||
vscode
|
vscode
|
||||||
weechat
|
weechat
|
||||||
inetutils
|
inetutils
|
||||||
|
198
home/shell.nix
198
home/shell.nix
@@ -1,85 +1,125 @@
|
|||||||
{pkgs, ...}: {
|
{
|
||||||
programs.fish = {
|
lib,
|
||||||
enable = true;
|
pkgs,
|
||||||
# initExtra = ''
|
userName,
|
||||||
# export PATH="$PATH:$HOME/bin:$HOME/.local/bin:$HOME/go/bin"
|
...
|
||||||
# '';
|
}: {
|
||||||
|
programs = {
|
||||||
shellAliases = {
|
fish = {
|
||||||
# ls aliases
|
enable = true;
|
||||||
ls = "eza --color";
|
shellAliases = {
|
||||||
la = "eza -l -all --color";
|
# ls aliases
|
||||||
ll = "eza -l --color";
|
ls = "eza --color";
|
||||||
lt = "eza -l --color --git";
|
la = "eza -l -all --color";
|
||||||
|
ll = "eza -l --color";
|
||||||
# lazygit alias
|
lt = "eza -l --color --git";
|
||||||
lg = "lazygit";
|
# lazygit alias
|
||||||
|
lg = "lazygit";
|
||||||
# cat, less, more alias
|
# cat, less, more alias
|
||||||
cat = "bat";
|
cat = "bat";
|
||||||
less = "bat";
|
less = "bat";
|
||||||
more = "bat";
|
more = "bat";
|
||||||
|
# top alias
|
||||||
# top alias
|
top = "btm";
|
||||||
top = "btm";
|
|
||||||
};
|
|
||||||
|
|
||||||
functions = {
|
|
||||||
fish_greeting = {
|
|
||||||
body = ''
|
|
||||||
set memes \
|
|
||||||
"Crazy? I was crazy once. They locked me in a room. A rubber room. A rubber room with rats. And rats make me crazy." \
|
|
||||||
"Daddy, chill!" \
|
|
||||||
"What the hell is even that?!" \
|
|
||||||
"Road work ahead? Yeah, I sure hope it does!" \
|
|
||||||
"Look at all those chickens!" \
|
|
||||||
"I smell like beef" \
|
|
||||||
"Say, Coloardo - I'M A GIRAFFE" \
|
|
||||||
"I didn't get no sleep cause of y'all, y'all not gone get any sleep cause of me!" \
|
|
||||||
"This is the dollar store, how good can it be?" \
|
|
||||||
"That was legitness" \
|
|
||||||
"Deez nuts" \
|
|
||||||
"I wanna be a cowboy baby" \
|
|
||||||
"Can I get a waffle? Can I please get a waffle?" \
|
|
||||||
"I'm lesbian. I thought you were American." \
|
|
||||||
"You gotta give 'em that 'hawk tuah' and spit on that thang!" \
|
|
||||||
"We don't do that here..."
|
|
||||||
|
|
||||||
set choose_meme (random)"%"(count $memes)
|
|
||||||
set choose_meme $memes[(math $choose_meme"+1")]
|
|
||||||
|
|
||||||
printf (set_color F90)"%s\n" $choose_meme
|
|
||||||
'';
|
|
||||||
onEvent = "fish_greeting";
|
|
||||||
};
|
};
|
||||||
|
functions =
|
||||||
|
{
|
||||||
|
fish_greeting = {
|
||||||
|
body = ''
|
||||||
|
set memes \
|
||||||
|
"Crazy? I was crazy once. They locked me in a room. A rubber room. A rubber room with rats. And rats make me crazy." \
|
||||||
|
"Daddy, chill!" \
|
||||||
|
"What the hell is even that?!" \
|
||||||
|
"Road work ahead? Yeah, I sure hope it does!" \
|
||||||
|
"Look at all those chickens!" \
|
||||||
|
"I smell like beef" \
|
||||||
|
"Say, Coloardo - I'M A GIRAFFE" \
|
||||||
|
"I didn't get no sleep cause of y'all, y'all not gone get any sleep cause of me!" \
|
||||||
|
"This is the dollar store, how good can it be?" \
|
||||||
|
"That was legitness" \
|
||||||
|
"Deez nuts" \
|
||||||
|
"I wanna be a cowboy baby" \
|
||||||
|
"Can I get a waffle? Can I please get a waffle?" \
|
||||||
|
"I'm lesbian. I thought you were American." \
|
||||||
|
"You gotta give 'em that 'hawk tuah' and spit on that thang!" \
|
||||||
|
"We don't do that here..." \
|
||||||
|
"What are those?! They are my crocs..." \
|
||||||
|
"It's an avocado... Thanks!" \
|
||||||
|
"I am once again asking for your financial support" \
|
||||||
|
"Is that a weed?" \
|
||||||
|
"No, this is Patrick!" \
|
||||||
|
"Come ride, heroes, ride" \
|
||||||
|
"Away with the tide" \
|
||||||
|
"Concede your mind unto the fiend" \
|
||||||
|
"Darkness come, rend the shield of light" \
|
||||||
|
"The sun is setting, darkness taking over - a date with chaos and you're dressed to the nines" \
|
||||||
|
"Now kneel overdweller, your lord commands, there's no salvation for the sons of man" \
|
||||||
|
"Snap click clank whirr whizz wham boom!" \
|
||||||
|
"Rohs an kyn ala na"
|
||||||
|
|
||||||
|
set choose_meme (random)"%"(count $memes)
|
||||||
|
set choose_meme $memes[(math $choose_meme"+1")]
|
||||||
|
printf (set_color F90)"%s\n" $choose_meme
|
||||||
|
'';
|
||||||
|
# onEvent = "fish_greeting";
|
||||||
|
};
|
||||||
|
} // (lib.mkIf pkgs.stdenv.isLinux {
|
||||||
|
block = {
|
||||||
|
body = ''
|
||||||
|
echo "Starting systemd-inhibit..."
|
||||||
|
set inhibit_pid_file /tmp/fish_inhibit_pid_(whoami)
|
||||||
|
bash -c 'systemd-inhibit --no-ask-password --what=idle --who="'${userName}'" --why="manual invocation" sh & echo $! > '"$inhibit_pid_file"' && disown'
|
||||||
|
if test -f $inhibit_pid_file
|
||||||
|
set -g INHIBIT_PID (cat $inhibit_pid_file)
|
||||||
|
echo "Inhibit process started with PID: $INHIBIT_PID"
|
||||||
|
else
|
||||||
|
echo "Failed to start inhibit process"
|
||||||
|
return 1
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
unblock = {
|
||||||
|
body = ''
|
||||||
|
set inhibit_pid_file /tmp/fish_inhibit_pid_(whoami)
|
||||||
|
if test -f $inhibit_pid_file
|
||||||
|
set INHIBIT_PID (cat $inhibit_pid_file)
|
||||||
|
echo "Killing inhibit process: $INHIBIT_PID"
|
||||||
|
kill -SIGTERM $INHIBIT_PID 2>/dev/null; or kill -SIGKILL $INHIBIT_PID 2>/dev/null
|
||||||
|
rm -f $inhibit_pid_file
|
||||||
|
set -e INHIBIT_PID
|
||||||
|
echo "Inhibit process terminated"
|
||||||
|
else
|
||||||
|
echo "No inhibit process file found"
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
});
|
||||||
};
|
};
|
||||||
};
|
zsh = {
|
||||||
|
enable = true;
|
||||||
programs.zsh = {
|
initContent = ''
|
||||||
enable = true;
|
if [[ -z "$BASH_EXECUTION_STRING" ]]; then
|
||||||
initContent = ''
|
if [[ -n "$ZSH_VERSION" ]]; then
|
||||||
if [[ -z "$BASH_EXECUTION_STRING" ]]; then
|
LOGIN_OPTION="--login"
|
||||||
if [[ -n "$ZSH_VERSION" ]]; then
|
else
|
||||||
LOGIN_OPTION="--login"
|
LOGIN_OPTION=""
|
||||||
else
|
fi
|
||||||
LOGIN_OPTION=""
|
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
|
||||||
fi
|
fi
|
||||||
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
|
'';
|
||||||
fi
|
};
|
||||||
'';
|
bash = {
|
||||||
};
|
enable = true;
|
||||||
|
initExtra = ''
|
||||||
programs.bash = {
|
if [[ -z "$BASH_EXECUTION_STRING" ]]; then
|
||||||
enable = true;
|
if [[ -n "$ZSH_VERSION" ]]; then
|
||||||
initExtra = ''
|
LOGIN_OPTION="--login"
|
||||||
if [[ -z "$BASH_EXECUTION_STRING" ]]; then
|
else
|
||||||
if [[ -n "$ZSH_VERSION" ]]; then
|
LOGIN_OPTION=""
|
||||||
LOGIN_OPTION="--login"
|
fi
|
||||||
else
|
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
|
||||||
LOGIN_OPTION=""
|
|
||||||
fi
|
fi
|
||||||
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
|
'';
|
||||||
fi
|
};
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@@ -147,20 +147,5 @@ in {
|
|||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = pkgs.stdenv.isLinux;
|
enable = pkgs.stdenv.isLinux;
|
||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
|
|
||||||
package = pkgs.waybar.overrideAttrs (old: {
|
|
||||||
version = "0.13.0";
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "Alexays";
|
|
||||||
repo = "Waybar";
|
|
||||||
rev = "0fcda9afa519eb84deda68c051f7938a6c6bdbce";
|
|
||||||
sha256 = "sha256-Puo/Y4qotb6uEEe9vbu/hyFXwLntr48R2C6mrmDKs0c=";
|
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = old.buildInputs ++ [ pkgs.fftw ];
|
|
||||||
mesonFlags = (old.mesonFlags or []) ++ [ "-Dcava=disabled" ];
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
19
modules/apps/appimage.nix
Normal file
19
modules/apps/appimage.nix
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.appimage;
|
||||||
|
in {
|
||||||
|
options.appimage = {
|
||||||
|
enable = mkEnableOption "AppImage support";
|
||||||
|
};
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
appimageupdate
|
||||||
|
appimage-run
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@@ -11,6 +11,7 @@
|
|||||||
"info.beyondallreason.bar"
|
"info.beyondallreason.bar"
|
||||||
"io.dbeaver.DBeaverCommunity"
|
"io.dbeaver.DBeaverCommunity"
|
||||||
"io.openrct2.OpenRCT2"
|
"io.openrct2.OpenRCT2"
|
||||||
|
"md.obsidian.Obsidian"
|
||||||
"org.prismlauncher.PrismLauncher"
|
"org.prismlauncher.PrismLauncher"
|
||||||
"sh.cider.Cider"
|
"sh.cider.Cider"
|
||||||
];
|
];
|
||||||
@@ -20,11 +21,13 @@ in {
|
|||||||
inherit lib pkgs flatpakPackages;
|
inherit lib pkgs flatpakPackages;
|
||||||
})
|
})
|
||||||
../../apps/gaming.nix
|
../../apps/gaming.nix
|
||||||
|
../../apps/appimage.nix
|
||||||
../../graphics
|
../../graphics
|
||||||
../../pwrMgmt
|
../../pwrMgmt
|
||||||
../../networking/core.nix
|
../../networking/core.nix
|
||||||
../../sound/pipewire.nix
|
../../sound/pipewire.nix
|
||||||
../../sound/shairport.nix
|
../../sound/shairport.nix
|
||||||
|
../../sound/focusrite.nix
|
||||||
../../virtualization/podman.nix
|
../../virtualization/podman.nix
|
||||||
../../virtualization/hardware.nix
|
../../virtualization/hardware.nix
|
||||||
];
|
];
|
||||||
@@ -33,9 +36,13 @@ in {
|
|||||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||||
|
|
||||||
# Custom kernel/boot stuff
|
# Custom kernel/boot stuff
|
||||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
boot = {
|
||||||
boot.loader.systemd-boot.enable = true;
|
kernelPackages = pkgs.linuxPackages_latest;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
loader = {
|
||||||
|
systemd-boot.enable = true;
|
||||||
|
efi.canTouchEfiVariables = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Enable Bluetooth if present
|
# Enable Bluetooth if present
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
@@ -62,21 +69,6 @@ in {
|
|||||||
wl-clip-persist
|
wl-clip-persist
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable OpenSSH
|
|
||||||
services.openssh.enable = true;
|
|
||||||
|
|
||||||
# Enable keyring
|
|
||||||
services.gnome.gnome-keyring.enable = true;
|
|
||||||
|
|
||||||
# Enable GnuPG
|
|
||||||
programs.gnupg.agent = {
|
|
||||||
enable = true;
|
|
||||||
enableSSHSupport = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Enable SUID wrappers (some programs need them)
|
|
||||||
programs.mtr.enable = true;
|
|
||||||
|
|
||||||
# Enable Polkit
|
# Enable Polkit
|
||||||
security.polkit.enable = true;
|
security.polkit.enable = true;
|
||||||
|
|
||||||
@@ -144,14 +136,39 @@ in {
|
|||||||
networkManager.enable = true;
|
networkManager.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable dconf
|
programs = {
|
||||||
programs.dconf.enable = true;
|
# Enable GnuPG
|
||||||
|
gnupg.agent = {
|
||||||
|
enable = true;
|
||||||
|
enableSSHSupport = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Enable SUID wrappers (some programs need them)
|
||||||
|
mtr.enable = true;
|
||||||
|
|
||||||
|
# Enable dconf
|
||||||
|
dconf.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Add username to groups "wheel" and "video" - more may be added here later
|
# Add username to groups "wheel" and "video" - more may be added here later
|
||||||
users.users.${userName}.extraGroups = ["wheel" "video" "gamemode" "podman" "network"];
|
users.users.${userName}.extraGroups = ["wheel" "video" "gamemode" "podman" "network"];
|
||||||
|
|
||||||
# Flatpak packages (see ../../apps/flatpak.nix)
|
services = {
|
||||||
services.flatpak.packages = flatpakPackages;
|
# Enable OpenSSH
|
||||||
|
openssh.enable = true;
|
||||||
|
|
||||||
|
# Enable keyring
|
||||||
|
gnome.gnome-keyring.enable = true;
|
||||||
|
|
||||||
|
# Flatpak packages (see ../../apps/flatpak.nix)
|
||||||
|
flatpak.packages = flatpakPackages;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Focusrite Scarlett audio interface support (see ../../sound/focusrite.nix)
|
||||||
|
sound.hardware.focusrite.enable = true;
|
||||||
|
|
||||||
|
# AppImage support
|
||||||
|
appimage.enable = true;
|
||||||
|
|
||||||
# XDG stuff
|
# XDG stuff
|
||||||
xdg = {
|
xdg = {
|
||||||
@@ -159,12 +176,12 @@ in {
|
|||||||
enable = true;
|
enable = true;
|
||||||
config = {
|
config = {
|
||||||
sway = {
|
sway = {
|
||||||
default = [ "wlr" "gtk" ];
|
default = ["wlr" "gtk"];
|
||||||
"org.freedesktop.impl.portal.Secret" = [ "gnome-keyring" ];
|
"org.freedesktop.impl.portal.Secret" = ["gnome-keyring"];
|
||||||
};
|
};
|
||||||
common = {
|
common = {
|
||||||
default = [ "gtk" ];
|
default = ["gtk"];
|
||||||
"org.freedesktop.impl.portal.Secret" = [ "gnome-keyring" ];
|
"org.freedesktop.impl.portal.Secret" = ["gnome-keyring"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
extraPortals = with pkgs; [
|
extraPortals = with pkgs; [
|
||||||
|
33
modules/sound/focusrite.nix
Normal file
33
modules/sound/focusrite.nix
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
# Must be paired with the pipewire Nix module, this does nothing but install packages
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.sound.hardware.focusrite;
|
||||||
|
in {
|
||||||
|
options.sound.hardware.focusrite = {
|
||||||
|
enable = mkEnableOption "Focusrite audio interface support";
|
||||||
|
guiSupport = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Enable GUI support for Focusrite Scarlett audio interface (installs alsa-scarlett-gui)";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
config = mkIf cfg.enable (mkMerge [
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs;
|
||||||
|
[
|
||||||
|
scarlett2
|
||||||
|
alsa-scarlett-gui
|
||||||
|
]
|
||||||
|
++ (
|
||||||
|
if cfg.guiSupport
|
||||||
|
then [pkgs.alsa-scarlett-gui]
|
||||||
|
else []
|
||||||
|
);
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
}
|
Reference in New Issue
Block a user