init: flakeify the majority of my config

Remaining point of focus is making the sway config working properly
This commit is contained in:
Nydragon 2024-05-13 15:34:22 +09:00
commit d89eb790b1
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
19 changed files with 1146 additions and 0 deletions

64
flake.lock generated Normal file
View file

@ -0,0 +1,64 @@
{
"nodes": {
"home-manager": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1715380449,
"narHash": "sha256-716+f9Rj3wjSyD1xitCv2FcYbgPz1WIVDj+ZBclH99Y=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "d7682620185f213df384c363288093b486b2883f",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "home-manager",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1715458517,
"narHash": "sha256-oi4z6RuLnGTR8TbjPcN/D2jFKywCrMRhAtSfgPHY9nE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "09208c1471b96985c809998af55d82e134a750b8",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1715266358,
"narHash": "sha256-doPgfj+7FFe9rfzWo1siAV2mVCasW+Bh8I1cToAXEE4=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "f1010e0469db743d14519a1efd37e23f8513d714",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"home-manager": "home-manager",
"nixpkgs": "nixpkgs",
"nixpkgs-unstable": "nixpkgs-unstable"
}
}
},
"root": "root",
"version": 7
}

40
flake.nix Normal file
View file

@ -0,0 +1,40 @@
{
description = "Nydragon's configuration'";
inputs = {
nixpkgs = { url = "github:nixos/nixpkgs"; };
nixpkgs-unstable = { url = "github:nixos/nixpkgs?ref=nixos-unstable"; };
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ self, nixpkgs, nixpkgs-unstable, home-manager }:
let
inherit (self) outputs;
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
lib = nixpkgs.lib;
in {
nixosConfigurations = {
xps9510 = lib.nixosSystem {
inherit system;
modules = [ ./hosts/xps9510/configuration.nix ];
specialArgs = { inherit inputs outputs system unstable; };
};
};
};
}

75
home/default.nix Normal file
View file

@ -0,0 +1,75 @@
{ config, inputs, system, stateVersion, username, homeDirectory, pkgs, unstable
, ... }:
let scripts = import ./scripts { inherit pkgs; };
in {
imports = [
./firefox
./fish
#./sway
./neovim
./rofi
#./thunderbird
];
xdg.configFile."gtk-4.0/gtk.css".source =
"${pkgs.catppuccin-gtk}/share/themes/Catppuccin-Frappe-Standard-Blue-Dark/gtk-4.0/gtk.css";
dconf = {
enable = true;
settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";
settings."org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
services.blueman-applet.enable = true;
qt.enable = true;
qt.platformTheme = "gtk";
home = {
inherit stateVersion;
inherit username;
inherit homeDirectory;
packages = with pkgs; [
digikam
element-desktop
libreoffice
loupe
gnome.seahorse
gimp
calibre
vlc
thunderbird
gnome.nautilus
rofi-power-menu
unstable.lollypop
# Proprietary
unstable.postman
unstable.mongodb-compass
# CLI tools
delta
fzf
jhead
fdupes
exiftool
sshfs
zip
unzip
lazygit
fd
ripgrep
# Scripts
scripts.screenshot
scripts.set-background
];
sessionVariables = {
EDITOR = "nvim";
MOZ_ENABLE_WAYLAND = 1;
};
};
}

73
home/firefox/default.nix Normal file
View file

@ -0,0 +1,73 @@
{ pkgs, config, lib, ... }: {
programs.firefox = {
enable = true;
profiles.nico = {
name = "Nico";
isDefault = true;
search = {
default = "DuckDuckGo";
force = true;
engines = let
nixicon =
"${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
iconUpdateInteval = 24 * 60 * 60 * 1000; # every day
in {
"NixOS Packages" = {
urls = [{
template =
"https://search.nixos.org/packages?query={searchTerms}";
}];
icon = nixicon;
definedAliases = [ "@nixpkg" ];
};
"NixOS Wiki" = {
urls = [{
template =
"https://wiki.nixos.org/index.php?search={searchTerms}";
}];
icon = nixicon;
definedAliases = [ "@nixwiki" ];
};
"NixOS Options" = {
urls = [{
template = "https://search.nixos.org/options?query={searchTerms}";
}];
icon = nixicon;
definedAliases = [ "@nixoptions" ];
};
"Arch Wiki" = {
urls = [{
template =
"https://wiki.archlinux.org/index.php?title=Special:Search&search={searchTerms}";
}];
iconUpdateURL = "https://nixos.wiki/favicon.ico";
updateInterval = iconUpdateInteval;
definedAliases = [ "@archwiki" ];
};
"DuckDuckGo" = {
urls = [{ template = "https://duckduckgo.com/?q={searchTerms}"; }];
iconUpdateURL = "https://duckduckgo.com/favicon.ico";
updateInterval = iconUpdateInteval;
definedAliases = [ "@duckduckgo" "@ddg" ];
};
"MyNixOS" = {
urls =
[{ template = "https://mynixos.com/search?q={searchTerms}"; }];
iconUpdateURL = "https://mynixos.com/favicon.ico";
updateInterval = iconUpdateInteval;
definedAliases = [ "@hm" "@mynixos" ];
};
"stackoverflow" = {
urls = [{
template = "https://stackoverflow.com/search?q={searchTerms}";
}];
iconUpdateURL =
"https://cdn.sstatic.net/Sites/stackoverflow/Img/favicon.ico";
updateInterval = iconUpdateInteval;
definedAliases = [ "@stackoverflow" ];
};
};
};
};
};
}

28
home/fish/default.nix Normal file
View file

@ -0,0 +1,28 @@
{ pkgs, config, lib, ... }: {
programs.fish = {
enable = true;
shellAbbrs = {
clip = "wl-copy";
dp = "env --chdir ~/.dotfiles/ dotter deploy -v";
ls = "eza -la";
cat = "bat";
sd = ''cd "$(dirname "$HOME/$(env --chdir ~ fzf)")"'';
mkdir = "mkdir --parent";
};
functions = {
gitignore = "curl -sL https://www.gitignore.io/api/$argv";
nrun = "nix run nixpkgs#$argv[1] -- $argv[2..]";
mv-bad-creation-date = ''
exiftool -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]"'';
rename-images = ''
set -f input "$PWD/$argv[1]"
if not test -d $input
echo "input is not a direcotry"
else
exiftool -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}"
end
'';
};
};
}

44
home/neovim/default.nix Normal file
View file

@ -0,0 +1,44 @@
{ pkgs, system, config, lib, ... }: {
programs.neovim = let
customR = pkgs.rWrapper.override {
packages = with pkgs.rPackages; [ styler languageserver ];
};
in {
defaultEditor = true;
viAlias = true;
vimAlias = true;
enable = true;
withPython3 = false;
withRuby = false;
extraPackages = with pkgs; [
# Language Servers
rust-analyzer
#unstable.rust-analyzer
nixd
clang
nodePackages_latest.pyright
nodePackages_latest.bash-language-server
lua-language-server
zls
#rPackages.languageserver
# Formatter
python311Packages.black # Python formatter
#rPackages.styler # R formatter
nodePackages_latest.prettier # JSON, JS, TS formatter
yamlfmt # YAML formatter
taplo # TOML formatter
rustfmt # Rust formatter
shfmt # Shell, Bash etc.
# Misc
ripgrep
rustc
cargo
# R
customR
];
};
}

29
home/rofi/default.nix Normal file
View file

@ -0,0 +1,29 @@
{ pkgs, config, lib, ... }: {
programs.rofi = let conf = "${config.home.homeDirectory}/.config/rofi";
in {
enable = true;
plugins = [ pkgs.rofi-calc ];
theme = "${conf}/themes/rounded-gray-dark.rasi";
terminal = "${pkgs.alacritty}/bin/alacritty";
extraConfig = {
modes = [
"combi"
"filebrowser"
"ssh"
"drun"
"run"
"calc"
"vm:${conf}/scripts/libvirt-controller.py"
"obsidian:rofi-obsidian"
];
matching = "fuzzy";
sort = true;
sorting-method = "fzf";
show-icons = true;
steal-focus = true;
drun-use-desktop-cache = true;
drun-reload-desktop-cache = true;
combi-modes = [ "window" "drun" "filebrowser" "ssh" "calc" "obsidian" ];
};
};
}

22
home/scripts/default.nix Normal file
View file

@ -0,0 +1,22 @@
{ pkgs, ... }: {
screenshot = with pkgs;
writeShellApplication {
name = "screenshot";
runtimeInputs = [ slurp wl-clipboard libnotify ];
text = ''
location="$HOME/Pictures/Screenshots/$(date +%Y-%m-%d-%H%M%S)-screenshot.png";
if zone=$(slurp); then
grim -t png -g "$zone" - | wl-copy --type image/png && wl-paste > "$location" \
&& notify-send --app-name Screenshot -i "$location" --urgency=low "Screenshot copied to clipboard" "Screenshot created at $location";
fi
'';
};
set-background = pkgs.writers.writeFishBin "set-background" (builtins.readFile
(pkgs.fetchurl {
url =
"https://codeberg.org/Nydragon/scripts/raw/commit/bb7a40545fa5cfce177cdac009d9f46f4823d360/set_background.fish";
hash = "sha256-Qoz5nn0tqV6QtsXv9fsOkf3PafL30iO/eIkh8ro6O+c=";
}));
}

251
home/sway/default.nix Normal file
View file

@ -0,0 +1,251 @@
# vim:fileencoding=utf-8:foldmethod=marker
{ pkgs, config, lib, ... }: {
imports = [ ./swayidle.nix ];
wayland.windowManager.sway = let
screenshot = (import ../scripts { inherit pkgs; }).screenshot;
set-background = (import ../scripts { inherit pkgs; }).set-background;
homeDirectory = config.home.homeDirectory;
term = "${pkgs.alacritty}/bin/alacritty";
filemanager = "${pkgs.gnome.nautilus}/bin/nautilus";
colors = {
lavender = "#babbf1";
black = "#000000";
};
inputs = {
kb = {
builtin = "1:1:AT_Translated_Set_2_keyboard";
keychron = "1452:591:Keychron_K4_Keychron_K4";
keychron_bt = "1452:591:Keychron_K4";
};
};
wallpaper = "${homeDirectory}/Pictures/backgrounds/catppucchin";
scripts = "${homeDirectory}/.config/system_scripts";
in {
enable = true;
xwayland = true;
wrapperFeatures.gtk = true;
extraConfigEarly = ''
exec systemctl --user import-environment PATH && systemctl --user restart xdg-desktop-portal.service
'';
extraConfig = ''
titlebar_padding 1
floating_modifier Mod4 normal
bindgesture {
swipe:right workspace prev
swipe:left workspace next
swipe:up focus up
swipe:down focus down
}
workspace 1
'';
config = {
bars = [{ command = "${pkgs.waybar}/bin/waybar"; }];
modifier = "Mod4";
#: Keybindings {{{
keybindings = let mod = config.wayland.windowManager.sway.config.modifier;
in lib.mkOptionDefault {
"${mod}+p" = "exec ${pkgs.swaylock}/bin/swaylock";
"${mod}+Shift+p" =
"exec ${pkgs.rofi}/bin/rofi -show p -modi p:rofi-power-menu";
# Reload the config file
"${mod}+Shift+c" = "reload";
# Kill the focused window
"${mod}+Shift+q" = "kill";
# Make focused window fullscreen
"${mod}+f" = "fullscreen";
# Start launcher
"${mod}+d" =
"exec rofi -config ${homeDirectory}/.config/rofi/config.rasi -show combi -automatic-save-to-history | xargs swaymsg exec --";
# Toggle the current focus between tiling and floating mode
"${mod}+Shift+space" = "floating toggle";
"${mod}+Return" = "exec ${term}";
"${mod}+e" = "exec ${filemanager}";
"${mod}+x" = "layout toggle stacking split";
"${mod}+Control+Left" = "workspace prev";
"${mod}+Control+Right" = "workspace next";
"${mod}+n" = "exec ${pkgs.swaynotificationcenter}/bin/swaync-client -t";
"--locked XF86MonBrightnessUp" =
"exec --no-startup-id ${pkgs.brightnessctl}/bin/brightnessctl s +10%";
"--locked XF86MonBrightnessDown" =
"exec --no-startup-id ${pkgs.brightnessctl}/bin/brightnessctl s 10%-";
"--locked XF86AudioRaiseVolume" =
"exec --no-startup-id ${pkgs.pamixer}/bin/pamixer -i 5";
"--locked XF86AudioLowerVolume" =
"exec --no-startup-id ${pkgs.pamixer}/bin/pamixer -d 5";
"--locked XF86AudioMicMute" =
"exec --no-startup-id ${pkgs.pamixer}/bin/pamixer --default-source -m";
"--locked XF86AudioMute" =
"exec --no-startup-id ${pkgs.pamixer}/bin/pamixer -t";
"--locked XF86AudioPlay" = "exec playerctl play-pause";
"--locked XF86AudioPause" = "exec playerctl play-pause";
"--locked XF86AudioNext" = "exec playerctl next";
"--locked XF86AudioPrev" = "exec playerctl previous";
"Print" = "exec ${screenshot}/bin/screenshot";
"${mod}+u" = "exec ${screenshot}/bin/screenshot";
#: {{{
"--input-device=${inputs.kb.builtin} ${mod}+ampersand" =
"workspace number 1";
"--input-device=${inputs.kb.builtin} ${mod}+eacute" =
"workspace number 2";
"--input-device=${inputs.kb.builtin} ${mod}+quotedbl" =
"workspace number 3";
"--input-device=${inputs.kb.builtin} ${mod}+apostrophe" =
"workspace number 4";
"--input-device=${inputs.kb.builtin} ${mod}+parenleft" =
"workspace number 5";
"--input-device=${inputs.kb.builtin} ${mod}+minus" =
"workspace number 6";
"--input-device=${inputs.kb.builtin} ${mod}+egrave" =
"workspace number 7";
"--input-device=${inputs.kb.builtin} ${mod}+underscore" =
"workspace number 8";
"--input-device=${inputs.kb.builtin} ${mod}+ccedilla" =
"workspace number 9";
"--input-device=${inputs.kb.builtin} ${mod}+agrave" =
"workspace number 10";
"--input-device=${inputs.kb.builtin} ${mod}+Shift+ampersand" =
"move container to workspace number 1";
"--input-device=${inputs.kb.builtin} ${mod}+Shift+eacute" =
"move container to workspace number 2";
"--input-device=${inputs.kb.builtin} ${mod}+Shift+quotedbl" =
"move container to workspace number 3";
"--input-device=${inputs.kb.builtin} ${mod}+Shift+apostrophe" =
"move container to workspace number 4";
"--input-device=${inputs.kb.builtin} ${mod}+Shift+parenleft" =
"move container to workspace number 5";
"--input-device=${inputs.kb.builtin} ${mod}+Shift+minus" =
"move container to workspace number 6";
"--input-device=${inputs.kb.builtin} ${mod}+Shift+egrave" =
"move container to workspace number 7";
"--input-device=${inputs.kb.builtin} ${mod}+Shift+underscore" =
"move container to workspace number 8";
"--input-device=${inputs.kb.builtin} ${mod}+Shift+ccedilla" =
"move container to workspace number 9";
"--input-device=${inputs.kb.builtin} ${mod}+Shift+agrave" =
"move container to workspace number 10";
#: }}}
};
#: }}}
#: Startup {{{
startup = [
{
command =
"${pkgs.swayidle}/bin/swayidle -C ${homeDirectory}/.config/swayidle/config";
}
{
command = "${pkgs.swaynotificationcenter}/bin/swaync";
}
{
command = ''
[ -z "$(pidof nextcloud)" ] && ${pkgs.nextcloud-client}/bin/nextcloud --background'';
}
{
command = ''
[ -z "$(pidof kdeconnect-indicator)" ] && ${pkgs.kdeconnect}/bin/kdeconnect-indicator
'';
}
{
command =
"${scripts.set-background}/bin/set-background -f ${wallpaper}";
always = true;
}
{
command =
"${pkgs.swaynotificationcenter}/bin/swaync-client --reload-config --reload-css";
always = true;
}
];
#: }}}
assigns = {
"2" = [{ app_id = "firefox"; }];
"3" = [ ];
"4" = [{ class = "discord"; }];
"5" = [{ app_id = "lollypop"; }];
};
seat = {
"*" = {
xcursor_theme = "Catppuccin-Frappe-Lavender-Cursors 32";
keyboard_grouping = "none";
};
};
window = {
border = 3;
commands = [
{
command = "inhibit_idle fullscreen";
criteria = {
class = "^.*$";
app_id = "^.*$";
};
}
{
command = "floating enable";
criteria.app_id = "^(${
(lib.strings.concatStringsSep "|" [
"org.keepassxc.KeePassXC"
"xdg-desktop-portal-gtk"
"org.kde.polkit-kde-authentication-agent-1"
"com.nextcloud.desktopclient.nextcloud"
])
})$";
}
{
command = ''title_format "[XWayland] %title"'';
criteria.shell = "xwayland";
}
{
command = "move position mouse";
criteria.app_id = "com.nextcloud.desktopclient.nextcloud";
}
];
};
terminal = "${term}";
colors = with colors; {
focused = {
border = lavender;
background = lavender;
text = black;
indicator = "#00d4ff";
childBorder = lavender;
};
};
gaps = { inner = 5; };
#: Input {{{
input = {
"*" = {
xkb_layout = "fr,us";
xkb_options = "grp:alt_shift_toggle,compose:caps";
};
"${inputs.kb.builtin}" = { xkb_layout = "fr"; };
"${inputs.kb.keychron}" = {
xkb_layout = "us";
xkb_numlock = "enabled";
};
"${inputs.kb.keychron_bt}" = {
xkb_layout = "us";
xkb_numlock = "enabled";
};
"type:touchpad" = {
tap = "enabled";
natural_scroll = "enabled";
click_method = "clickfinger";
};
};
#: }}}
#: Output {{{
output = {
eDP-1 = {
scale = "2";
pos = "0 0";
res = "3840x2400";
adaptive_sync = "on";
};
};
#: }}}
};
};
}

25
home/sway/swayidle.nix Normal file
View file

@ -0,0 +1,25 @@
{ pkgs, config, lib, ... }: {
services.swayidle = {
enable = true;
events = [
{
event = "before-sleep";
command = "${pkgs.swaylock}/bin/swaylock";
}
{
event = "lock";
command = "${pkgs.swaylock}/bin/swaylock";
}
];
timeouts = [
{
timeout = 300;
command = "${pkgs.swaylock}/bin/swaylock";
}
{
timeout = 1200;
command = "${pkgs.systemd}/bin/systemctl hibernate";
}
];
};
}

31
home/sway/swaylock.nix Normal file
View file

@ -0,0 +1,31 @@
{ pkgs, config, lib, ... }:
let
pointer = {
name = "Catppuccin-Frappe-Lavender-Cursors";
package = pkgs.catppuccin-cursors.frappeLavender;
size = 32;
};
in {
programs.swaylock = { enable = true; };
gtk = {
enable = true;
theme = {
name = "Catppuccin-Frappe-Compact-Lavender-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "lavender" ];
size = "compact";
variant = "frappe";
};
};
cursorTheme = pointer;
iconTheme = {
name = "Papirus-Dark";
# package = pkgs.papirus-icon-theme;
package = pkgs.catppuccin-papirus-folders.override {
accent = "lavender";
flavor = "frappe";
};
};
};
}

View file

@ -0,0 +1,10 @@
{ pkgs, config, lib, ... }: {
programs.thunderbird = {
enable = true;
#settings = { mailnews.wraplength = 80; };
profiles.nico = {
isDefault = true;
name = "nico";
};
};
}

View file

@ -0,0 +1,256 @@
# vim:fileencoding=utf-8:foldmethod=marker
{ config, pkgs, lib, inputs, system, unstable, ... }:
let
stateVersion = "23.11";
username = "nico";
hostename = "xps9510";
homeDirectory = "/home/${username}";
in {
imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix
inputs.home-manager.nixosModules.home-manager
../../modules
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.luks.devices."luks-7adaa102-d438-4e9e-9972-4a3c91b887b3".device =
"/dev/disk/by-uuid/7adaa102-d438-4e9e-9972-4a3c91b887b3";
networking.hostName = hostename;
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
hardware.opengl.enable = true;
# Set your time zone.
time.timeZone = "Asia/Seoul";
# Configure keymap in X11
services.xserver = {
layout = "fr";
xkbVariant = "";
};
services.logind = {
lidSwitch = "suspend-then-hibernate";
powerKey = "hibernate";
};
services.blueman.enable = true;
systemd.sleep.extraConfig = ''
HibernateDelaySec=1200
'';
xdg.mime = {
enable = true;
defaultApplications = let
fileManager = "org.gnome.Nautilus.desktop";
browser = "firefox.desktop";
in {
"inode/directory" = fileManager;
"application/zip" = fileManager;
"application/pdf" = browser;
"x-www-browser" = browser;
"text/html" = browser;
"image/*" = "org.gnome.Loupe.desktop";
"image/png" = "org.gnome.Loupe.desktop";
"image/jpeg" = "org.gnome.Loupe.desktop";
"x-scheme-handler/http" = browser;
"x-scheme-handler/https" = browser;
};
};
home-manager.users.${username} = import ../../home {
inherit config pkgs system inputs stateVersion username homeDirectory
unstable;
};
# home-manager.users.nico =
## vim:fileencoding=utf-8:foldmethod=marker
#{ config, pkgs, ... }:
#programs.vscode = {
#enable = false;
#package = unstable.vscodium;
#extensions = with pkgs.vscode-extensions; [
#yzhang.markdown-all-in-one
#rust-lang.rust-analyzer
#];
#};
programs.dconf.enable = true;
#security.polkit.enable = true;
virtualisation.docker.enable = true;
virtualisation.docker.enableOnBoot = false;
virtualisation.docker.rootless = {
enable = true;
setSocketVariable = true;
};
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
services.thermald.enable = true;
services.tlp = {
enable = false;
settings = {
# CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
CPU_ENERGY_PERF_POLICY_ON_BAT = "power";
# CPU_ENERGY_PERF_POLICY_ON_AC = "performance";
# CPU_MIN_PERF_ON_AC = 0;
# CPU_MAX_PERF_ON_AC = 100;
CPU_MIN_PERF_ON_BAT = 0;
CPU_MAX_PERF_ON_BAT = 20;
#Optional helps save long term battery health
START_CHARGE_THRESH_BAT0 = 40; # 40 and below it starts to charge
STOP_CHARGE_THRESH_BAT0 = 80; # 80 and above it stops charging
};
};
services.upower = {
enable = true;
criticalPowerAction = "Hibernate";
};
services.dbus.enable = true;
xdg.portal = {
enable = true;
wlr = {
settings = {
screencast = {
chooser_type = "simple";
chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or";
};
};
enable = true;
};
# gtk portal needed to make gtk apps happy
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
};
services.gvfs.enable = true;
# Configure console keymap
console.keyMap = "fr";
programs.fish.enable = true;
users.defaultUserShell = pkgs.fish;
users.users.${username} = {
isNormalUser = true;
createHome = true;
extraGroups = [ "networkmanager" "wheel" "audio" "libvirtd" ];
};
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command =
"${pkgs.greetd.greetd}/bin/agreety --cmd ${pkgs.sway}/bin/sway";
user = "${username}";
};
default_session = initial_session;
};
};
services.gnome.gnome-keyring.enable = true;
services.flatpak.enable = true;
#programs.sway = {
#enable = true;
#wrapperFeatures.gtk = true;
#extraPackages = with pkgs; [
#waybar
#grim
#slurp
#wl-clipboard
#unstable.swaynotificationcenter
#swaybg
#swaylock
#swayidle
#];
#};
environment.sessionVariables = {
XDG_CACHE_HOME = "$HOME/.cache";
XDG_CONFIG_HOME = "$HOME/.config";
XDG_DATA_HOME = "$HOME/.local/share";
XDG_STATE_HOME = "$HOME/.local/state";
XDG_CURRENT_DESKTOP = "sway";
MANROFFOPT = "-c";
MANPAGER = "sh -c 'col -bx | ${pkgs.bat}/bin/bat -l man -p'";
};
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
shared-mime-info
fish
firefox
nextcloud-client
git
keepassxc
alacritty
eza
bat
kdeconnect
dotter
sassc
glib
stylua
pamixer
wireguard-tools
dconf
nixfmt
pavucontrol
xdg-utils
htop
brightnessctl
];
fonts = with pkgs; {
packages = [
(nerdfonts.override { fonts = [ "Noto" ]; })
#noto-fonts
#noto-fonts-extra
#noto-fonts-cjk-sans
];
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.11"; # Did you read the comment?
}

View file

@ -0,0 +1,48 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules = [
"xhci_pci"
"thunderbolt"
"vmd"
"nvme"
"usb_storage"
"sd_mod"
"rtsx_pci_sdmmc"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/54c1dd8a-fb4b-4ca1-89a9-6a6b662fac7c";
fsType = "ext4";
};
boot.initrd.luks.devices."luks-ef68c7a7-4355-4c37-bd6f-b753f6b9520c".device =
"/dev/disk/by-uuid/ef68c7a7-4355-4c37-bd6f-b753f6b9520c";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/83C5-F9F2";
fsType = "vfat";
};
swapDevices =
[{ device = "/dev/disk/by-uuid/ba211282-a02a-42d6-9a89-9998ffee4755"; }];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp0s20f3.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
}

3
modules/default.nix Normal file
View file

@ -0,0 +1,3 @@
{ pkgs, config, lib, ... }: {
imports = [ ./locale.nix ./networking.nix ./nix ./programs/firefox.nix ];
}

17
modules/locale.nix Normal file
View file

@ -0,0 +1,17 @@
{ pkgs, config, lib, ... }:
let locale = "en_GB.UTF-8";
in {
i18n.defaultLocale = locale;
i18n.extraLocaleSettings = {
LC_ADDRESS = locale;
LC_IDENTIFICATION = locale;
LC_MEASUREMENT = locale;
LC_MONETARY = locale;
LC_NAME = locale;
LC_NUMERIC = locale;
LC_PAPER = locale;
LC_TELEPHONE = locale;
LC_TIME = locale;
};
}

30
modules/networking.nix Normal file
View file

@ -0,0 +1,30 @@
{ pkgs, config, lib, ... }: {
networking.firewall = {
enable = true;
# Open ports in the firewall.
allowedTCPPorts = [ ];
allowedUDPPorts = [ 51820 ];
allowedTCPPortRanges = [{
from = 1714;
to = 1764;
}];
allowedUDPPortRanges = [{
from = 1714;
to = 1764;
}];
# if packets are still dropped, they will show up in dmesg
logReversePathDrops = true;
# wireguard trips rpfilter up https://nixos.wiki/wiki/WireGuard#Setting_up_WireGuard_with_NetworkManager
extraCommands = ''
ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN
ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN
'';
extraStopCommands = ''
ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN || true
ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN || true
'';
};
}

10
modules/nix/default.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, config, lib, ... }: {
nix = {
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 20d";
};
settings.experimental-features = [ "nix-command" "flakes" ];
};
}

View file

@ -0,0 +1,90 @@
# Reference https://discourse.nixos.org/t/declare-firefox-extensions-and-settings/36265
{ pkgs, config, lib, ... }: {
programs.firefox = {
enable = true;
preferencesStatus = "locked";
preferences = {
"browser.bookmarks.restore_default_bookmarks" = false;
"browser.toolbars.bookmarks.visibility" = "never";
"browser.urlbar.quicksuggest.enabled" = false;
"browser.urlbar.sponsoredTopSites" = false;
"browser.urlbar.suggest.addons" = false;
"browser.urlbar.suggest.bookmark" = false;
"browser.urlbar.suggest.engines" = false;
"browser.urlbar.suggest.history" = false;
"browser.urlbar.suggest.topsites" = false;
"browser.urlbar.trimHttps" = false;
"browser.sessionstore.restore_tabs_lazily" = true;
"extensions.pocket.enabled" = false;
"dom.security.https_only_mode" = true;
"extensions.htmlaboutaddons.recommendations.enabled" = false;
"browser.dataFeatureRecommendations.enabled" = false;
"browser.translations.automaticallyPopup" = false;
"browser.translations.enable" = true;
"cookiebanners.service.mode" = 2;
"cookiebanners.service.mode.privateBrowsing" = 2;
};
policies = {
PasswordManagerEnabled = false;
# Check about:support for extension/add-on ID strings.
ExtensionSettings = {
"uBlock0@raymondhill.net" = {
install_url =
"https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
installation_mode = "normal_install";
};
"firefox-translations-addon@mozilla.org" = {
install_url =
"https://addons.mozilla.org/firefox/downloads/latest/firefox-translations/latest.xpi";
installation_mode = "normal_install";
};
};
FirefoxHome = {
Search = true;
TopSites = false;
SponsoredTopSites = false;
Highlights = false;
Pocket = false;
SponsoredPocket = false;
Snippets = false;
};
DisableFormHistory = true;
DisableTelemetry = true;
DisplayMenuBar = "default-off";
OfferToSaveLogins = false;
PopupBlocking = {
Default = true;
Locked = true;
};
StartDownloadsInTempDirectory = true;
SanitizeOnShutdown = {
Cookies = true;
Cache = true;
FormData = true;
Locked = true;
};
SearchBar = "unified";
ShowHomeButton = false;
Permissions = {
Location = { BlockNewRequests = true; };
VirtualReality = { BlockNewRequests = true; };
Notifications = { BlockNewRequests = true; };
};
FirefoxSuggest = {
WebSuggestions = false;
SponsoredSuggestions = false;
ImproveSuggest = false;
Locked = true;
};
NoDefaultBookmarks = true;
EnableTrackingProtection = {
Value = true;
Locked = true;
Cryptomining = true;
Fingerprinting = true;
EmailTracking = true;
};
};
};
}