Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5f4e768666 | ||
|
|
3472cc5fb9 | ||
|
|
9a77d382df | ||
|
|
f61c516048 | ||
|
|
b0180f42b3 | ||
|
|
1d685b3600 | ||
|
|
32b0b38523 | ||
|
|
24c7043fa2 | ||
|
|
7e6f12dac9 | ||
|
|
e737b45307 | ||
|
|
db3b4c0441 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,3 +0,0 @@
|
|||||||
.editorconfig
|
|
||||||
.gemini
|
|
||||||
result
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
{ config, pkgs, inputs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./sway.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
home.file.".wezterm.lua".source = ./wezterm.lua;
|
|
||||||
|
|
||||||
dconf.settings = {
|
|
||||||
"org/gnome/settings-daemon/plugins/media-keys" = {
|
|
||||||
custom-keybindings = [ "/org/gnome/settings-daemon/plugins/media-keys/custom0/" ];
|
|
||||||
};
|
|
||||||
"org/gnome/settings-daemon/plugins/media-keys/custom0" = {
|
|
||||||
binding = "<Primary><Alt>t";
|
|
||||||
command = "wezterm";
|
|
||||||
name = "open-terminal";
|
|
||||||
};
|
|
||||||
"org/gnome/desktop/interface" = {
|
|
||||||
color-scheme = "prefer-dark";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
anki-bin
|
|
||||||
wezterm
|
|
||||||
chromium
|
|
||||||
loupe
|
|
||||||
papers
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.ghostty = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
font-family = "JetBrainsMono Nerd Font";
|
|
||||||
font-size = 10;
|
|
||||||
theme = "Catppuccin Mocha";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
xdg.mimeApps = {
|
|
||||||
enable = true;
|
|
||||||
defaultApplications = {
|
|
||||||
"image/jpeg" = [ "loupe" ];
|
|
||||||
"image/png" = [ "org.gnome.Loupe.desktop" ];
|
|
||||||
"image/gif" = [ "org.gnome.Loupe.desktop" ];
|
|
||||||
"image/webp" = [ "org.gnome.Loupe.desktop" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,9 +1,38 @@
|
|||||||
{ config, pkgs, inputs, ... }:
|
{ config, pkgs, inputs, isDesktop, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.username = "alex";
|
home.username = "alex";
|
||||||
home.homeDirectory = "/home/alex";
|
home.homeDirectory = "/home/alex";
|
||||||
|
|
||||||
|
# link the configuration file in current directory to the specified location in home directory
|
||||||
|
# home.file.".config/i3/wallpaper.jpg".source = ./wallpaper.jpg;
|
||||||
|
|
||||||
|
# link all files in `./scripts` to `~/.config/i3/scripts`
|
||||||
|
# home.file.".config/i3/scripts" = {
|
||||||
|
# source = ./scripts;
|
||||||
|
# recursive = true; # link recursively
|
||||||
|
# executable = true; # make all files executable
|
||||||
|
# };
|
||||||
|
|
||||||
|
# encode the file content in nix configuration file directly
|
||||||
|
# home.file.".xxx".text = ''
|
||||||
|
# xxx
|
||||||
|
# '';
|
||||||
|
|
||||||
|
dconf.settings = if isDesktop then {
|
||||||
|
"org/gnome/settings-daemon/plugins/media-keys" = {
|
||||||
|
custom-keybindings = [ "/org/gnome/settings-daemon/plugins/media-keys/custom0/" ];
|
||||||
|
};
|
||||||
|
"org/gnome/settings-daemon/plugins/media-keys/custom0" = {
|
||||||
|
binding = "<Primary><Alt>t";
|
||||||
|
command = "wezterm";
|
||||||
|
name = "open-terminal";
|
||||||
|
};
|
||||||
|
"org/gnome/desktop/interface" = {
|
||||||
|
color-scheme = "prefer-dark";
|
||||||
|
};
|
||||||
|
} else {};
|
||||||
|
|
||||||
home.shellAliases = {
|
home.shellAliases = {
|
||||||
e = "ls -lh";
|
e = "ls -lh";
|
||||||
tree = "eza --tree";
|
tree = "eza --tree";
|
||||||
@@ -20,6 +49,7 @@
|
|||||||
home.file.".config/nvim/init.lua".source = ./nvim/init.lua;
|
home.file.".config/nvim/init.lua".source = ./nvim/init.lua;
|
||||||
home.file.".config/tmux/tmux.conf".source = ./tmux/tmux.conf;
|
home.file.".config/tmux/tmux.conf".source = ./tmux/tmux.conf;
|
||||||
home.file.".config/tmux/tmux.conf.local".source = ./tmux/tmux.conf.local;
|
home.file.".config/tmux/tmux.conf.local".source = ./tmux/tmux.conf.local;
|
||||||
|
home.file.".wezterm.lua".source = ./wezterm.lua;
|
||||||
home.file.".config/jrnl/jrnl.yaml".source = ./jrnl/jrnl.yaml;
|
home.file.".config/jrnl/jrnl.yaml".source = ./jrnl/jrnl.yaml;
|
||||||
home.file.".config/fish/functions" = {
|
home.file.".config/fish/functions" = {
|
||||||
source = ./fish/functions;
|
source = ./fish/functions;
|
||||||
@@ -35,19 +65,25 @@
|
|||||||
nnn # terminal file manager
|
nnn # terminal file manager
|
||||||
|
|
||||||
# archives
|
# archives
|
||||||
|
zip
|
||||||
xz
|
xz
|
||||||
|
unzip
|
||||||
# p7zip
|
# p7zip
|
||||||
|
|
||||||
# utils
|
# utils
|
||||||
|
ripgrep # recursively searches directories for a regex pattern
|
||||||
|
bat
|
||||||
jq # A lightweight and flexible command-line JSON processor
|
jq # A lightweight and flexible command-line JSON processor
|
||||||
# yq-go # yaml processor https://github.com/mikefarah/yq
|
# yq-go # yaml processor https://github.com/mikefarah/yq
|
||||||
eza # A modern replacement for ‘ls’
|
eza # A modern replacement for ‘ls’
|
||||||
fzf # A command-line fuzzy finder
|
fzf # A command-line fuzzy finder
|
||||||
|
fd
|
||||||
xclip
|
xclip
|
||||||
trash-cli
|
trash-cli
|
||||||
|
|
||||||
# networking tools
|
# networking tools
|
||||||
dig
|
dig
|
||||||
|
mtr # A network diagnostic tool
|
||||||
# iperf3
|
# iperf3
|
||||||
# dnsutils # `dig` + `nslookup`
|
# dnsutils # `dig` + `nslookup`
|
||||||
# ldns # replacement of `dig`, it provide the command `drill`
|
# ldns # replacement of `dig`, it provide the command `drill`
|
||||||
@@ -93,22 +129,19 @@
|
|||||||
pciutils # lspci
|
pciutils # lspci
|
||||||
usbutils # lsusb
|
usbutils # lsusb
|
||||||
zoxide
|
zoxide
|
||||||
];
|
] ++ (if isDesktop then [
|
||||||
|
anki-bin
|
||||||
|
wezterm
|
||||||
|
chromium
|
||||||
|
] else []);
|
||||||
|
|
||||||
# basic configuration of git, please change to your own
|
# basic configuration of git, please change to your own
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
userName = "Alexander Wainwright";
|
||||||
user = {
|
userEmail = "alexander.l.wainwright@boeing.com";
|
||||||
name = "Alexander Wainwright";
|
extraConfig = {
|
||||||
email = "code@figtree.dev";
|
pull.ff = "only";
|
||||||
};
|
|
||||||
init = {
|
|
||||||
defaultBranch = "main";
|
|
||||||
};
|
|
||||||
push = {
|
|
||||||
autoSetupRemote = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -864,36 +864,35 @@ require("lazy").setup({
|
|||||||
},
|
},
|
||||||
{ -- Highlight, edit, and navigate code
|
{ -- Highlight, edit, and navigate code
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
branch = 'main',
|
|
||||||
build = ":TSUpdate",
|
build = ":TSUpdate",
|
||||||
-- opts = {
|
opts = {
|
||||||
-- ensure_installed = { "python", "bash", "c", "diff", "html", "lua", "luadoc", "markdown", "vim", "vimdoc" },
|
ensure_installed = { "python", "bash", "c", "diff", "html", "lua", "luadoc", "markdown", "vim", "vimdoc" },
|
||||||
-- -- Autoinstall languages that are not installed
|
-- Autoinstall languages that are not installed
|
||||||
-- auto_install = true,
|
auto_install = true,
|
||||||
-- highlight = {
|
highlight = {
|
||||||
-- enable = true,
|
enable = true,
|
||||||
-- -- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules.
|
-- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules.
|
||||||
-- -- If you are experiencing weird indenting issues, add the language to
|
-- If you are experiencing weird indenting issues, add the language to
|
||||||
-- -- the list of additional_vim_regex_highlighting and disabled languages for indent.
|
-- the list of additional_vim_regex_highlighting and disabled languages for indent.
|
||||||
-- additional_vim_regex_highlighting = { "ruby", "python" },
|
additional_vim_regex_highlighting = { "ruby", "python" },
|
||||||
-- },
|
},
|
||||||
-- indent = { enable = false, disable = { "ruby", "python" } },
|
indent = { enable = false, disable = { "ruby", "python" } },
|
||||||
-- },
|
},
|
||||||
-- config = function(_, opts)
|
config = function(_, opts)
|
||||||
-- -- [[ Configure Treesitter ]] See `:help nvim-treesitter`
|
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
|
||||||
--
|
|
||||||
-- -- Prefer git instead of curl in order to improve connectivity in some environments
|
-- Prefer git instead of curl in order to improve connectivity in some environments
|
||||||
-- require("nvim-treesitter.install").prefer_git = true
|
require("nvim-treesitter.install").prefer_git = true
|
||||||
-- ---@diagnostic disable-next-line: missing-fields
|
---@diagnostic disable-next-line: missing-fields
|
||||||
-- require("nvim-treesitter.configs").setup(opts)
|
require("nvim-treesitter.configs").setup(opts)
|
||||||
--
|
|
||||||
-- -- There are additional nvim-treesitter modules that you can use to interact
|
-- There are additional nvim-treesitter modules that you can use to interact
|
||||||
-- -- with nvim-treesitter. You should go explore a few and see what interests you:
|
-- with nvim-treesitter. You should go explore a few and see what interests you:
|
||||||
-- --
|
--
|
||||||
-- -- - Incremental selection: Included, see `:help nvim-treesitter-incremental-selection-mod`
|
-- - Incremental selection: Included, see `:help nvim-treesitter-incremental-selection-mod`
|
||||||
-- -- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context
|
-- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context
|
||||||
-- -- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
|
-- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
|
||||||
-- end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
{ config, pkgs, inputs, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
unstable = import inputs.nixpkgs-unstable {
|
|
||||||
system = pkgs.stdenv.hostPlatform.system;
|
|
||||||
config.allowUnfree = true;
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
foliate
|
|
||||||
inputs.locutus.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
||||||
jrnl
|
|
||||||
mullvad-browser
|
|
||||||
tor-browser
|
|
||||||
exiftool
|
|
||||||
digikam
|
|
||||||
shotwell
|
|
||||||
nextcloud-client
|
|
||||||
bitwarden-desktop
|
|
||||||
signal-desktop
|
|
||||||
spotify
|
|
||||||
gemini-cli
|
|
||||||
|
|
||||||
foliate
|
|
||||||
|
|
||||||
(symlinkJoin {
|
|
||||||
name = "darktable";
|
|
||||||
paths = [ unstable.darktable ];
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
|
||||||
postBuild = ''
|
|
||||||
# Remove the symlink to the original binary
|
|
||||||
rm $out/bin/darktable
|
|
||||||
|
|
||||||
# Create a wrapper that points to the cached original
|
|
||||||
makeWrapper ${unstable.darktable}/bin/darktable $out/bin/darktable \
|
|
||||||
--set GDK_BACKEND wayland
|
|
||||||
'';
|
|
||||||
})
|
|
||||||
];
|
|
||||||
}
|
|
||||||
494
alex/sway.nix
494
alex/sway.nix
@@ -1,494 +0,0 @@
|
|||||||
{ pkgs, lib, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
# Catppuccin Mocha Palette
|
|
||||||
base = "#1e1e2e";
|
|
||||||
mantle = "#181825";
|
|
||||||
surface0 = "#313244";
|
|
||||||
surface1 = "#45475a";
|
|
||||||
text = "#cdd6f4";
|
|
||||||
lavender = "#b4befe";
|
|
||||||
blue = "#89b4fa";
|
|
||||||
sapphire = "#74c7ec";
|
|
||||||
red = "#f38ba8";
|
|
||||||
peach = "#fab387";
|
|
||||||
yellow = "#f9e2af";
|
|
||||||
green = "#a6e3a1";
|
|
||||||
mauve = "#cba6f7";
|
|
||||||
overlay0 = "#6c7086";
|
|
||||||
in
|
|
||||||
{
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
swaybg
|
|
||||||
swayidle
|
|
||||||
swaylock-effects
|
|
||||||
grim
|
|
||||||
slurp
|
|
||||||
wl-clipboard
|
|
||||||
mako
|
|
||||||
libnotify
|
|
||||||
nerd-fonts.jetbrains-mono
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.swaylock = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.swaylock-effects;
|
|
||||||
settings = {
|
|
||||||
clock = true;
|
|
||||||
color = base;
|
|
||||||
effect-pixelate = 50;
|
|
||||||
effect-greyscale = true;
|
|
||||||
screenshots = true;
|
|
||||||
font = "JetBrainsMono Nerd Font";
|
|
||||||
font-size = 24;
|
|
||||||
indicator-idle-visible = true;
|
|
||||||
indicator-radius = 200;
|
|
||||||
indicator-thickness = 17;
|
|
||||||
line-color = base;
|
|
||||||
ring-color = overlay0;
|
|
||||||
inside-color = base;
|
|
||||||
key-hl-color = lavender;
|
|
||||||
separator-color = base;
|
|
||||||
text-color = text;
|
|
||||||
text-caps-lock-color = text;
|
|
||||||
line-ver-color = base;
|
|
||||||
ring-ver-color = lavender;
|
|
||||||
inside-ver-color = base;
|
|
||||||
text-ver-color = text;
|
|
||||||
ring-wrong-color = red;
|
|
||||||
text-wrong-color = red;
|
|
||||||
inside-wrong-color = base;
|
|
||||||
inside-clear-color = base;
|
|
||||||
text-clear-color = text;
|
|
||||||
ring-clear-color = yellow;
|
|
||||||
line-clear-color = base;
|
|
||||||
line-wrong-color = base;
|
|
||||||
bs-hl-color = red;
|
|
||||||
grace = 2;
|
|
||||||
grace-no-mouse = true;
|
|
||||||
grace-no-touch = true;
|
|
||||||
datestr = "%a, %B %e";
|
|
||||||
timestr = "%H:%M";
|
|
||||||
fade-in = 0.3;
|
|
||||||
ignore-empty-password = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
wayland.windowManager.sway = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.swayfx;
|
|
||||||
checkConfig = false;
|
|
||||||
|
|
||||||
config = {
|
|
||||||
modifier = "Mod4";
|
|
||||||
terminal = "wezterm";
|
|
||||||
menu = "fuzzel";
|
|
||||||
fonts = {
|
|
||||||
names = [ "JetBrainsMono Nerd Font" ];
|
|
||||||
style = "Regular";
|
|
||||||
size = 11.0;
|
|
||||||
};
|
|
||||||
|
|
||||||
input = {
|
|
||||||
"*" = {
|
|
||||||
xkb_layout = "us";
|
|
||||||
xkb_variant = "dvorak";
|
|
||||||
};
|
|
||||||
"type:touchpad" = {
|
|
||||||
dwt = "enabled";
|
|
||||||
tap = "enabled";
|
|
||||||
natural_scroll = "enabled";
|
|
||||||
middle_emulation = "enabled";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
gaps = {
|
|
||||||
inner = 10;
|
|
||||||
outer = 5;
|
|
||||||
};
|
|
||||||
|
|
||||||
colors = {
|
|
||||||
focused = {
|
|
||||||
border = lavender;
|
|
||||||
background = base;
|
|
||||||
text = text;
|
|
||||||
indicator = lavender;
|
|
||||||
childBorder = lavender;
|
|
||||||
};
|
|
||||||
focusedInactive = {
|
|
||||||
border = overlay0;
|
|
||||||
background = base;
|
|
||||||
text = text;
|
|
||||||
indicator = overlay0;
|
|
||||||
childBorder = overlay0;
|
|
||||||
};
|
|
||||||
unfocused = {
|
|
||||||
border = overlay0;
|
|
||||||
background = base;
|
|
||||||
text = overlay0;
|
|
||||||
indicator = overlay0;
|
|
||||||
childBorder = overlay0;
|
|
||||||
};
|
|
||||||
urgent = {
|
|
||||||
border = red;
|
|
||||||
background = base;
|
|
||||||
text = red;
|
|
||||||
indicator = red;
|
|
||||||
childBorder = red;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
output = {
|
|
||||||
"*" = {
|
|
||||||
bg = "/home/alex/Pictures/wallpaper.jpg fill";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
bars = [];
|
|
||||||
|
|
||||||
startup = [
|
|
||||||
{ command = "waybar"; }
|
|
||||||
{ command = "mako"; }
|
|
||||||
];
|
|
||||||
|
|
||||||
keybindings = let
|
|
||||||
modifier = "Mod4";
|
|
||||||
in lib.mkOptionDefault {
|
|
||||||
"${modifier}+Return" = "exec wezterm";
|
|
||||||
"${modifier}+d" = "exec fuzzel";
|
|
||||||
"${modifier}+Shift+q" = "kill";
|
|
||||||
"${modifier}+Shift+c" = "reload";
|
|
||||||
"${modifier}+Shift+e" = "exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'";
|
|
||||||
|
|
||||||
"${modifier}+Shift+l" = "exec swaylock -f";
|
|
||||||
|
|
||||||
"${modifier}+Shift+s" = "exec grim -g \"$(slurp)\" - | wl-copy";
|
|
||||||
|
|
||||||
# Workspaces
|
|
||||||
"--whole-window ${modifier}+button4" = "workspace prev";
|
|
||||||
"--whole-window ${modifier}+button5" = "workspace next";
|
|
||||||
|
|
||||||
"XF86AudioRaiseVolume" = "exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+";
|
|
||||||
"XF86AudioLowerVolume" = "exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-";
|
|
||||||
"XF86AudioMute" = "exec wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle";
|
|
||||||
"XF86MonBrightnessUp" = "exec light -A 5";
|
|
||||||
"XF86MonBrightnessDown" = "exec light -U 5";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
extraConfig = ''
|
|
||||||
workspace number 1
|
|
||||||
default_border pixel 2
|
|
||||||
default_floating_border pixel 2
|
|
||||||
|
|
||||||
corner_radius 10
|
|
||||||
shadows enable
|
|
||||||
shadow_blur_radius 20
|
|
||||||
shadow_color #00000077
|
|
||||||
|
|
||||||
blur enable
|
|
||||||
blur_passes 3
|
|
||||||
blur_radius 5
|
|
||||||
layer_effects "waybar" blur enable; shadows enable; corner_radius 10;
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
services.mako = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
font = "JetBrainsMono Nerd Font 11";
|
|
||||||
background-color = "${base}dd";
|
|
||||||
border-color = lavender;
|
|
||||||
border-radius = 10;
|
|
||||||
border-size = 2;
|
|
||||||
text-color = text;
|
|
||||||
default-timeout = 5000;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services.swayidle =
|
|
||||||
let
|
|
||||||
lock = "${pkgs.swaylock-effects}/bin/swaylock --daemonize";
|
|
||||||
# modify "display" function based on your window manager
|
|
||||||
# Sway
|
|
||||||
display = status: "${pkgs.sway}/bin/swaymsg 'output * power ${status}'";
|
|
||||||
# Niri
|
|
||||||
# display = status: "${pkgs.niri}/bin/niri msg action power-${status}-monitors";
|
|
||||||
in
|
|
||||||
{
|
|
||||||
enable = true;
|
|
||||||
timeouts = [
|
|
||||||
{
|
|
||||||
timeout = 295; # in seconds
|
|
||||||
command = "${pkgs.libnotify}/bin/notify-send 'Locking in 5 seconds' -t 5000";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
timeout = 300;
|
|
||||||
command = lock;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
timeout = 330;
|
|
||||||
command = display "off";
|
|
||||||
resumeCommand = display "on";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
timeout = 600;
|
|
||||||
command = "${pkgs.systemd}/bin/systemctl suspend";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
events = [
|
|
||||||
{
|
|
||||||
event = "before-sleep";
|
|
||||||
# adding duplicated entries for the same event may not work
|
|
||||||
command = (display "off") + "; " + lock;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
event = "after-resume";
|
|
||||||
command = display "on";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
event = "lock";
|
|
||||||
command = (display "off") + "; " + lock;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
event = "unlock";
|
|
||||||
command = display "on";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.fuzzel = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
main = {
|
|
||||||
terminal = "${pkgs.wezterm}/bin/wezterm";
|
|
||||||
layer = "overlay";
|
|
||||||
width = 100;
|
|
||||||
line-height = 40;
|
|
||||||
font = "JetBrainsMono Nerd Font:size=12";
|
|
||||||
};
|
|
||||||
colors = {
|
|
||||||
background = "${lib.strings.removePrefix "#" base}ff";
|
|
||||||
text = "${lib.strings.removePrefix "#" text}ff";
|
|
||||||
match = "${lib.strings.removePrefix "#" lavender}ff";
|
|
||||||
selection = "${lib.strings.removePrefix "#" surface1}ff";
|
|
||||||
selection-text = "${lib.strings.removePrefix "#" text}ff";
|
|
||||||
selection-match = "${lib.strings.removePrefix "#" lavender}ff";
|
|
||||||
border = "${lib.strings.removePrefix "#" lavender}ff";
|
|
||||||
};
|
|
||||||
border = {
|
|
||||||
width = 2;
|
|
||||||
radius = 10;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.waybar = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
mainBar = {
|
|
||||||
layer = "top";
|
|
||||||
position = "top";
|
|
||||||
height = 30;
|
|
||||||
margin-top = 5;
|
|
||||||
margin-left = 10;
|
|
||||||
margin-right = 10;
|
|
||||||
spacing = 4;
|
|
||||||
|
|
||||||
modules-left = [ "sway/workspaces" "sway/mode" ];
|
|
||||||
modules-center = [ "clock" ];
|
|
||||||
modules-right = [ "pulseaudio" "network" "cpu" "memory" "battery" "tray" ];
|
|
||||||
|
|
||||||
"sway/workspaces" = {
|
|
||||||
disable-scroll = true;
|
|
||||||
all-outputs = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
"clock" = {
|
|
||||||
format = "{:%a %d %b %H:%M:%S}";
|
|
||||||
tooltip-format = "<big>{:%Y %B}</big>\n<tt>{calendar}</tt>";
|
|
||||||
interval = 1;
|
|
||||||
};
|
|
||||||
|
|
||||||
"cpu" = {
|
|
||||||
format = "{usage}% ";
|
|
||||||
};
|
|
||||||
|
|
||||||
"memory" = {
|
|
||||||
format = "{}% ";
|
|
||||||
tooltip-format = "RAM: {used}GiB / {total}GiB ({percentage}%)\nSwap: {swapUsed}GiB / {swapTotal}GiB ({swapPercentage}%)";
|
|
||||||
};
|
|
||||||
|
|
||||||
"battery" = {
|
|
||||||
states = {
|
|
||||||
warning = 30;
|
|
||||||
critical = 15;
|
|
||||||
};
|
|
||||||
format = "{capacity}% {icon}";
|
|
||||||
format-charging = "{capacity}% ";
|
|
||||||
format-plugged = "{capacity}% ";
|
|
||||||
format-icons = ["" "" "" "" ""];
|
|
||||||
};
|
|
||||||
|
|
||||||
"network" = {
|
|
||||||
format-wifi = "{essid} ({signalStrength}%) ";
|
|
||||||
format-ethernet = "{ipaddr}/{cidr} ";
|
|
||||||
tooltip-format = "{ifname} via {gwaddr} ";
|
|
||||||
format-linked = "{ifname} (No IP) ";
|
|
||||||
format-disconnected = "Disconnected ⚠";
|
|
||||||
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
|
||||||
};
|
|
||||||
|
|
||||||
"pulseaudio" = {
|
|
||||||
format = "{volume}% {icon} {format_source}";
|
|
||||||
format-bluetooth = "{volume}% {icon} {format_source}";
|
|
||||||
format-bluetooth-muted = " {icon} {format_source}";
|
|
||||||
format-muted = " {format_source}";
|
|
||||||
format-source = "{volume}% ";
|
|
||||||
format-source-muted = "";
|
|
||||||
format-icons = {
|
|
||||||
headphone = "";
|
|
||||||
hands-free = "";
|
|
||||||
headset = "";
|
|
||||||
phone = "";
|
|
||||||
portable = "";
|
|
||||||
car = "";
|
|
||||||
default = ["" "" ""];
|
|
||||||
};
|
|
||||||
on-click = "pavucontrol";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
style = ''
|
|
||||||
* {
|
|
||||||
font-family: "JetBrainsMono Nerd Font";
|
|
||||||
font-size: 13px;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
|
||||||
background-color: transparent;
|
|
||||||
color: ${text};
|
|
||||||
transition-property: background-color;
|
|
||||||
transition-duration: .5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar > box {
|
|
||||||
background-color: ${base};
|
|
||||||
border-radius: 15px;
|
|
||||||
opacity: 1.0;
|
|
||||||
padding: 0 3px 0 13px;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
box-shadow: inset 0 -3px transparent;
|
|
||||||
border: none;
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
button:hover {
|
|
||||||
background: inherit;
|
|
||||||
box-shadow: inset 0 -3px ${text};
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button {
|
|
||||||
padding: 0 5px;
|
|
||||||
background-color: transparent;
|
|
||||||
color: ${text};
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button:hover {
|
|
||||||
background: rgba(0, 0, 0, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.focused {
|
|
||||||
background-color: ${surface1};
|
|
||||||
box-shadow: inset 0 -3px ${lavender};
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.urgent {
|
|
||||||
background-color: ${red};
|
|
||||||
}
|
|
||||||
|
|
||||||
#mode {
|
|
||||||
background-color: ${surface0};
|
|
||||||
border-bottom: 3px solid ${text};
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock,
|
|
||||||
#battery,
|
|
||||||
#cpu,
|
|
||||||
#memory,
|
|
||||||
#disk,
|
|
||||||
#temperature,
|
|
||||||
#backlight,
|
|
||||||
#network,
|
|
||||||
#pulseaudio,
|
|
||||||
#custom-media,
|
|
||||||
#tray,
|
|
||||||
#mode,
|
|
||||||
#idle_inhibitor,
|
|
||||||
#mpd {
|
|
||||||
padding: 0 10px;
|
|
||||||
color: ${text};
|
|
||||||
background-color: ${surface0};
|
|
||||||
border-radius: 10px;
|
|
||||||
margin: 5px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock {
|
|
||||||
background-color: ${mauve};
|
|
||||||
color: ${base};
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery {
|
|
||||||
background-color: ${green};
|
|
||||||
color: ${base};
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.charging, #battery.plugged {
|
|
||||||
color: ${base};
|
|
||||||
background-color: ${green};
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.critical:not(.charging) {
|
|
||||||
background-color: ${red};
|
|
||||||
color: ${text};
|
|
||||||
animation-name: blink;
|
|
||||||
animation-duration: 0.5s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
|
|
||||||
#cpu {
|
|
||||||
background-color: ${peach};
|
|
||||||
color: ${base};
|
|
||||||
}
|
|
||||||
|
|
||||||
#memory {
|
|
||||||
background-color: ${yellow};
|
|
||||||
color: ${base};
|
|
||||||
}
|
|
||||||
|
|
||||||
#network {
|
|
||||||
background-color: ${sapphire};
|
|
||||||
color: ${base};
|
|
||||||
}
|
|
||||||
|
|
||||||
#pulseaudio {
|
|
||||||
background-color: ${blue};
|
|
||||||
color: ${base};
|
|
||||||
}
|
|
||||||
|
|
||||||
#pulseaudio.muted {
|
|
||||||
background-color: ${overlay0};
|
|
||||||
color: ${text};
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray {
|
|
||||||
background-color: ${surface0};
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -381,11 +381,6 @@ tmux_conf_urlscan_options="--compact --dedupe"
|
|||||||
# start with mouse mode enabled
|
# start with mouse mode enabled
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
|
|
||||||
# allow passthrough for fancy stuff like images
|
|
||||||
set -g allow-passthrough on
|
|
||||||
set -g allow-rename off
|
|
||||||
|
|
||||||
|
|
||||||
# force Vi mode
|
# force Vi mode
|
||||||
# really you should export VISUAL or EDITOR environment variable, see manual
|
# really you should export VISUAL or EDITOR environment variable, see manual
|
||||||
#set -g status-keys vi
|
#set -g status-keys vi
|
||||||
|
|||||||
@@ -18,7 +18,14 @@ config.window_frame = {
|
|||||||
config.font_size = 9.5
|
config.font_size = 9.5
|
||||||
config.hide_tab_bar_if_only_one_tab = true
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
|
|
||||||
config.font = wezterm.font 'Fira Code'
|
-- config.font = wezterm.font 'Fira Code'
|
||||||
config.font = wezterm.font 'Lilex Nerd Font'
|
-- config.font = wezterm.font 'Lilex Nerd Font'
|
||||||
|
|
||||||
|
config.font = wezterm.font_with_fallback {
|
||||||
|
'Fira Code', -- Replace with your preferred main font
|
||||||
|
'Noto Sans Symbols 2', -- Great for arrows like \u{1f898}
|
||||||
|
'Noto Sans',
|
||||||
|
'Symbols Nerd Font Mono',
|
||||||
|
}
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
|||||||
31
flake.lock
generated
31
flake.lock
generated
@@ -25,11 +25,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1766553861,
|
"lastModified": 1765605144,
|
||||||
"narHash": "sha256-ZbnG01yA3O8Yr1vUm3+NQ2qk9iRhS5bloAnuXHHy7+c=",
|
"narHash": "sha256-RM2xs+1HdHxesjOelxoA3eSvXShC8pmBvtyTke4Ango=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "0999ed8f965bbbd991437ad9c5ed3434cecbc30e",
|
"rev": "90b62096f099b73043a747348c11dbfcfbdea949",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -74,29 +74,13 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs-unstable": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1766651565,
|
|
||||||
"narHash": "sha256-QEhk0eXgyIqTpJ/ehZKg9IKS7EtlWxF3N7DXy42zPfU=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "3e2499d5539c16d0d173ba53552a4ff8547f4539",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NixOS",
|
|
||||||
"ref": "nixos-unstable",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1766622938,
|
"lastModified": 1765311797,
|
||||||
"narHash": "sha256-Eovt/DOCYjFFBZuYbbG9j5jhklzxdNbUGVYYxh3lG3s=",
|
"narHash": "sha256-mSD5Ob7a+T2RNjvPvOA1dkJHGVrNVl8ZOrAwBjKBDQo=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "5900a0a8850cbba98e16d5a7a6ed389402dfcf4f",
|
"rev": "09eb77e94fa25202af8f3e81ddc7353d9970ac1b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -110,8 +94,7 @@
|
|||||||
"inputs": {
|
"inputs": {
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"locutus": "locutus",
|
"locutus": "locutus",
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2"
|
||||||
"nixpkgs-unstable": "nixpkgs-unstable"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"systems": {
|
"systems": {
|
||||||
|
|||||||
94
flake.nix
94
flake.nix
@@ -4,7 +4,6 @@
|
|||||||
inputs = {
|
inputs = {
|
||||||
# NixOS official package source
|
# NixOS official package source
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
|
||||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager/release-25.11";
|
url = "github:nix-community/home-manager/release-25.11";
|
||||||
# The `follows` keyword in inputs is used for inheritance.
|
# The `follows` keyword in inputs is used for inheritance.
|
||||||
@@ -16,67 +15,116 @@
|
|||||||
locutus.url = "git+https://git.figtree.dev/alex/locutus";
|
locutus.url = "git+https://git.figtree.dev/alex/locutus";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, home-manager, ... }@inputs:
|
outputs = { self, nixpkgs, home-manager, ... }@inputs: {
|
||||||
let
|
|
||||||
# Shared Home Manager configuration function
|
|
||||||
mkHomeManagerConfig = { extraModules ? [] }: {
|
|
||||||
home-manager.useGlobalPkgs = true;
|
|
||||||
home-manager.useUserPackages = true;
|
|
||||||
home-manager.backupFileExtension = "backup";
|
|
||||||
home-manager.users.alex = {
|
|
||||||
imports = [ ./alex/core.nix ] ++ extraModules;
|
|
||||||
};
|
|
||||||
home-manager.extraSpecialArgs = { inherit inputs; };
|
|
||||||
};
|
|
||||||
in {
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
case = nixpkgs.lib.nixosSystem {
|
case = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
|
|
||||||
./hosts/case/configuration.nix
|
./hosts/case/configuration.nix
|
||||||
|
|
||||||
|
# enable home manager
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
(mkHomeManagerConfig { extraModules = [ ./alex/desktop.nix ./alex/personal.nix ]; })
|
{
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
|
||||||
|
home-manager.users.alex = import ./alex/home.nix;
|
||||||
|
|
||||||
|
# Optionally, use home-manager.extraSpecialArgs to pass arguments to
|
||||||
|
# home.nix
|
||||||
|
home-manager.extraSpecialArgs = { inherit inputs; isDesktop=true; };
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
count = nixpkgs.lib.nixosSystem {
|
count = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
|
|
||||||
./hosts/count/configuration.nix
|
./hosts/count/configuration.nix
|
||||||
|
|
||||||
|
# enable home manager
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
(mkHomeManagerConfig { extraModules = [ ./alex/desktop.nix ./alex/personal.nix ]; })
|
{
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
|
||||||
|
home-manager.users.alex = import ./alex/home.nix;
|
||||||
|
|
||||||
|
# Optionally, use home-manager.extraSpecialArgs to pass arguments to
|
||||||
|
# home.nix
|
||||||
|
home-manager.extraSpecialArgs = { inherit inputs; isDesktop=true; };
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
armitage = nixpkgs.lib.nixosSystem {
|
armitage = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
|
|
||||||
./hosts/armitage/configuration.nix
|
./hosts/armitage/configuration.nix
|
||||||
|
|
||||||
|
# enable home manager
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
(mkHomeManagerConfig { extraModules = [ ./alex/desktop.nix ]; })
|
{
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
|
||||||
|
home-manager.users.alex = import ./alex/home.nix;
|
||||||
|
|
||||||
|
# Optionally, use home-manager.extraSpecialArgs to pass arguments to
|
||||||
|
# home.nix
|
||||||
|
home-manager.extraSpecialArgs = { inherit inputs; isDesktop=true; };
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
alt = nixpkgs.lib.nixosSystem {
|
alt = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
|
|
||||||
./hosts/alt/configuration.nix
|
./hosts/alt/configuration.nix
|
||||||
|
|
||||||
|
# enable home manager
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
(mkHomeManagerConfig {})
|
{
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
|
||||||
|
home-manager.users.alex = import ./alex/home.nix;
|
||||||
|
|
||||||
|
# Optionally, use home-manager.extraSpecialArgs to pass arguments to
|
||||||
|
# home.nix
|
||||||
|
home-manager.extraSpecialArgs = { inherit inputs; isDesktop=false; };
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
nightcity = nixpkgs.lib.nixosSystem {
|
nightcity = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
|
|
||||||
./hosts/nightcity/configuration.nix
|
./hosts/nightcity/configuration.nix
|
||||||
|
|
||||||
|
# enable home manager
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
(mkHomeManagerConfig {})
|
{
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
|
||||||
|
home-manager.users.alex = import ./alex/home.nix;
|
||||||
|
|
||||||
|
# Optionally, use home-manager.extraSpecialArgs to pass arguments to
|
||||||
|
# home.nix
|
||||||
|
home-manager.extraSpecialArgs = { inherit inputs; isDesktop=false; };
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
# other hosts...
|
# other hosts...
|
||||||
|
|||||||
@@ -11,7 +11,6 @@
|
|||||||
../modules/base.nix
|
../modules/base.nix
|
||||||
../modules/kafka-mounts.nix
|
../modules/kafka-mounts.nix
|
||||||
../modules/server.nix
|
../modules/server.nix
|
||||||
../modules/syncthing.nix
|
|
||||||
./caddy.nix
|
./caddy.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -21,8 +20,6 @@
|
|||||||
privileged = true;
|
privileged = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.syncthing.guiAddress = "0.0.0.0:8384";
|
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [
|
networking.firewall.allowedTCPPorts = [
|
||||||
80 443 # caddy
|
80 443 # caddy
|
||||||
8000
|
8000
|
||||||
@@ -30,7 +27,6 @@
|
|||||||
8010 # audio bookshelf
|
8010 # audio bookshelf
|
||||||
8080 # file browser
|
8080 # file browser
|
||||||
8234 # shiori (non-standard)
|
8234 # shiori (non-standard)
|
||||||
8384 # syncthing
|
|
||||||
9117
|
9117
|
||||||
8191 # flaresolverr
|
8191 # flaresolverr
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -13,15 +13,97 @@
|
|||||||
../modules/laptop.nix
|
../modules/laptop.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
users.users.michael = {
|
||||||
|
isNormalUser = true;
|
||||||
|
description = "Michael Christian Latino";
|
||||||
|
extraGroups = [ ];
|
||||||
|
packages = with pkgs; [
|
||||||
|
];
|
||||||
|
shell = pkgs.fish;
|
||||||
|
};
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
# Use latest kernel.
|
# Use latest kernel.
|
||||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
# boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
boot.kernelPackages = pkgs.linuxPackages_6_12;
|
||||||
|
|
||||||
networking.hostName = "armitage";
|
networking.hostName = "armitage";
|
||||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
||||||
|
hardware.graphics.enable = true;
|
||||||
|
|
||||||
|
# Load nvidia driver for Xorg and Wayland
|
||||||
|
services.xserver.videoDrivers = ["nvidia" "displaylink" "modesetting"];
|
||||||
|
|
||||||
|
boot = {
|
||||||
|
blacklistedKernelModules = [ "nouveau" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
hardware.nvidia = {
|
||||||
|
|
||||||
|
# Modesetting is required.
|
||||||
|
modesetting.enable = true;
|
||||||
|
|
||||||
|
# Nvidia power management. Experimental, and can cause sleep/suspend to fail.
|
||||||
|
# Enable this if you have graphical corruption issues or application crashes after waking
|
||||||
|
# up from sleep. This fixes it by saving the entire VRAM memory to /tmp/ instead
|
||||||
|
# of just the bare essentials.
|
||||||
|
powerManagement.enable = false;
|
||||||
|
|
||||||
|
# Fine-grained power management. Turns off GPU when not in use.
|
||||||
|
# Experimental and only works on modern Nvidia GPUs (Turing or newer).
|
||||||
|
powerManagement.finegrained = false;
|
||||||
|
|
||||||
|
# Use the NVidia open source kernel module (not to be confused with the
|
||||||
|
# independent third-party "nouveau" open source driver).
|
||||||
|
# Support is limited to the Turing and later architectures. Full list of
|
||||||
|
# supported GPUs is at:
|
||||||
|
# https://github.com/NVIDIA/open-gpu-kernel-modules#compatible-gpus
|
||||||
|
# Only available from driver 515.43.04+
|
||||||
|
open = true;
|
||||||
|
|
||||||
|
# Enable the Nvidia settings menu,
|
||||||
|
# accessible via `nvidia-settings`.
|
||||||
|
nvidiaSettings = true;
|
||||||
|
|
||||||
|
# Optionally, you may need to select the appropriate driver version for your specific GPU.
|
||||||
|
# package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||||
|
package = config.boot.kernelPackages.nvidiaPackages.mkDriver {
|
||||||
|
version = "580.76.05";
|
||||||
|
sha256_64bit = "sha256-IZvmNrYJMbAhsujB4O/4hzY8cx+KlAyqh7zAVNBdl/0=";
|
||||||
|
sha256_aarch64 = "sha256-NL2DswzVWQQMVM092NmfImqKbTk9VRgLL8xf4QEvGAQ=";
|
||||||
|
openSha256 = "sha256-xEPJ9nskN1kISnSbfBigVaO6Mw03wyHebqQOQmUg/eQ=";
|
||||||
|
settingsSha256 = "sha256-ll7HD7dVPHKUyp5+zvLeNqAb6hCpxfwuSyi+SAXapoQ=";
|
||||||
|
persistencedSha256 = "sha256-bs3bUi8LgBu05uTzpn2ugcNYgR5rzWEPaTlgm0TIpHY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
prime = {
|
||||||
|
sync.enable = true;
|
||||||
|
|
||||||
|
amdgpuBusId = "PCI:0:65:0";
|
||||||
|
nvidiaBusId = "PCI:0:64:0";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# packages
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
displaylink
|
||||||
|
libreoffice
|
||||||
|
];
|
||||||
|
|
||||||
|
# Already detected directories
|
||||||
|
programs = {
|
||||||
|
direnv = {
|
||||||
|
enable = true;
|
||||||
|
enableBashIntegration = true;
|
||||||
|
nix-direnv.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# # display link drivers
|
||||||
|
# systemd.services.dlm.wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
# settings for stateful data, like file locations and database versions
|
# settings for stateful data, like file locations and database versions
|
||||||
|
|||||||
@@ -10,9 +10,8 @@
|
|||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../modules/base.nix
|
../modules/base.nix
|
||||||
../modules/desktop.nix
|
../modules/desktop.nix
|
||||||
../modules/personal.nix
|
../modules/home.nix
|
||||||
../modules/laptop.nix
|
../modules/laptop.nix
|
||||||
../modules/sway.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|||||||
@@ -11,9 +11,7 @@
|
|||||||
../modules/base.nix
|
../modules/base.nix
|
||||||
../modules/desktop.nix
|
../modules/desktop.nix
|
||||||
../modules/brother-printer.nix
|
../modules/brother-printer.nix
|
||||||
../modules/personal.nix
|
../modules/home.nix
|
||||||
../modules/sway.nix
|
|
||||||
../modules/syncthing.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|||||||
@@ -11,16 +11,6 @@
|
|||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
||||||
# this is to avoid some problem that happens apparently only when fish is
|
|
||||||
# enabled, where generating man cahes takes a very long time. note that it may
|
|
||||||
# break fish man completion and apropos.
|
|
||||||
documentation.man.generateCaches = false;
|
|
||||||
|
|
||||||
# enable a 1GB swap file
|
|
||||||
swapDevices = [{
|
|
||||||
device = "/swapfile";
|
|
||||||
size = 1024;
|
|
||||||
}];
|
|
||||||
|
|
||||||
# enable zram. not totally sure if this does it in physical ram or just swap
|
# enable zram. not totally sure if this does it in physical ram or just swap
|
||||||
zramSwap.enable = true;
|
zramSwap.enable = true;
|
||||||
@@ -75,7 +65,7 @@
|
|||||||
nix.gc = {
|
nix.gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
dates = "weekly";
|
dates = "weekly";
|
||||||
options = "--delete-older-than 30d";
|
options = "--delete-older-than 60d";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable zeroconf
|
# Enable zeroconf
|
||||||
@@ -126,12 +116,14 @@
|
|||||||
fd
|
fd
|
||||||
git
|
git
|
||||||
gocryptfs
|
gocryptfs
|
||||||
|
man-pages
|
||||||
mosh
|
mosh
|
||||||
neovim
|
neovim
|
||||||
python314
|
python314
|
||||||
ripgrep
|
ripgrep
|
||||||
rsync
|
rsync
|
||||||
silver-searcher
|
silver-searcher
|
||||||
|
sqlite
|
||||||
tldr
|
tldr
|
||||||
unzip
|
unzip
|
||||||
uv
|
uv
|
||||||
|
|||||||
@@ -1,20 +1,17 @@
|
|||||||
{ config, pkgs, inputs, ... }:
|
{ config, pkgs, inputs, ... }:
|
||||||
{
|
{
|
||||||
# Enable the X11 windowing system.
|
# Enable the X11 windowing system.
|
||||||
services.xserver = {
|
services.xserver.enable = true;
|
||||||
enable = true;
|
|
||||||
xkb = {
|
|
||||||
layout = "us";
|
|
||||||
variant = "dvorak";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services.displayManager.gdm = {
|
# Enable the GNOME Desktop Environment.
|
||||||
enable = true;
|
services.xserver.displayManager.gdm.enable = true;
|
||||||
wayland = true;
|
services.xserver.desktopManager.gnome.enable = true;
|
||||||
};
|
|
||||||
|
|
||||||
services.desktopManager.gnome.enable = true;
|
# Configure keymap in X11
|
||||||
|
services.xserver.xkb = {
|
||||||
|
layout = "us";
|
||||||
|
variant = "dvorak";
|
||||||
|
};
|
||||||
|
|
||||||
# enable japanese input
|
# enable japanese input
|
||||||
i18n.inputMethod = {
|
i18n.inputMethod = {
|
||||||
@@ -31,20 +28,19 @@
|
|||||||
enableDefaultPackages = true;
|
enableDefaultPackages = true;
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
bitwarden-desktop
|
||||||
khmeros
|
khmeros
|
||||||
|
libreoffice-fresh
|
||||||
|
nerd-fonts.lilex
|
||||||
|
noto-fonts
|
||||||
noto-fonts-cjk-sans
|
noto-fonts-cjk-sans
|
||||||
noto-fonts-cjk-serif
|
noto-fonts-cjk-serif
|
||||||
nerd-fonts.lilex
|
noto-fonts-color-emoji
|
||||||
fira-code
|
fira-code
|
||||||
|
meld
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
libreoffice-fresh
|
|
||||||
meld
|
|
||||||
showtime
|
|
||||||
];
|
|
||||||
|
|
||||||
# Enable networking
|
# Enable networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
@@ -71,10 +67,5 @@
|
|||||||
# services.xserver.libinput.enable = true;
|
# services.xserver.libinput.enable = true;
|
||||||
|
|
||||||
# Install firefox.
|
# Install firefox.
|
||||||
programs.firefox = {
|
programs.firefox.enable = true;
|
||||||
enable = true;
|
|
||||||
languagePacks = [
|
|
||||||
"en-GB"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
24
hosts/modules/home.nix
Normal file
24
hosts/modules/home.nix
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{ config, pkgs, inputs, ... }:
|
||||||
|
{
|
||||||
|
# Mullvad vpn
|
||||||
|
services.mullvad-vpn = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
foliate
|
||||||
|
inputs.locutus.packages.${pkgs.system}.default
|
||||||
|
jrnl
|
||||||
|
mullvad-browser
|
||||||
|
mullvad-vpn
|
||||||
|
tor-browser
|
||||||
|
exiftool
|
||||||
|
darktable
|
||||||
|
digikam
|
||||||
|
shotwell
|
||||||
|
nextcloud-client
|
||||||
|
bitwarden-desktop
|
||||||
|
signal-desktop
|
||||||
|
spotify
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
{ config, pkgs, inputs, ... }:
|
|
||||||
{
|
|
||||||
# Mullvad vpn
|
|
||||||
services.mullvad-vpn = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.mullvad-vpn;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
{ config, pkgs, ... }:
|
|
||||||
{
|
|
||||||
# Enable the Sway binary and hardware wrappers
|
|
||||||
programs.sway = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.swayfx;
|
|
||||||
wrapperFeatures.gtk = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Ensure xdg-desktop-portal is working (needed for file pickers/open with)
|
|
||||||
xdg.portal = {
|
|
||||||
enable = true;
|
|
||||||
wlr.enable = true;
|
|
||||||
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
|
||||||
};
|
|
||||||
|
|
||||||
# Hardware and security services that must be system-wide
|
|
||||||
services.gnome.gnome-keyring.enable = true;
|
|
||||||
security.polkit.enable = true;
|
|
||||||
programs.light.enable = true; # Allow brightness control
|
|
||||||
|
|
||||||
# Move system-wide packages here
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
pavucontrol
|
|
||||||
light
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
{ config, pkgs, inputs, ... }:
|
|
||||||
{
|
|
||||||
# sync thing
|
|
||||||
services.syncthing = {
|
|
||||||
enable = true;
|
|
||||||
openDefaultPorts = true;
|
|
||||||
user = "alex";
|
|
||||||
configDir = "/home/alex/.config/syncthing";
|
|
||||||
dataDir = "/home/alex";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user