Compare commits

...
Sign in to create a new pull request.

5 commits

Author SHA1 Message Date
Bart van der Braak
9b092cd3df
Add OpenBao 2025-12-09 22:28:53 +01:00
Bart van der Braak
f37c9d6f69
Changes 2025-11-11 23:44:02 +01:00
Bart van der Braak
06da4ff7fe Add OSRS Launcher Bolt 2025-09-23 00:52:13 +02:00
Bart van der Braak
e29653e202 Add RuneLite 2025-09-22 23:58:21 +02:00
Bart van der Braak
5001195716 Add PrismLauncher 2025-08-24 11:50:57 +02:00
8 changed files with 43 additions and 29 deletions

View file

@ -1,8 +1,7 @@
[user] [user]
name = Bart van der Braak name = Bart van der Braak
email = bart@vanderbraak.nl email = bart@vanderbraak.nl
# signingkey = 26ED0D75D89D9B61 signingkey = ~/.ssh/id_ed25519.pub
[alias] [alias]
p = push p = push
st = status st = status
@ -13,29 +12,29 @@
gl = config --global -l gl = config --global -l
aa = add . aa = add .
pushfwl = push --force-with-lease pushfwl = push --force-with-lease
[core] [core]
excludesfile = ~/.gitignore excludesfile = ~/.gitignore
pager = delta pager = delta
editor = vim editor = vim
[interactive] [interactive]
diffFilter = delta --color-only diffFilter = delta --color-only
[init] [init]
defaultBranch = main defaultBranch = main
[gpg]
format = ssh
[gpg "ssh"]
allowedSignersFile = ~/.ssh/allowed_signers
signingKey = ~/.ssh/id_ed25519.pub
signingAlgorithm = ssh-ed25519
signingNamespace = gitea
[commit] [commit]
# gpgsign = true gpgsign = true
[push] [push]
autoSetupRemote = true autoSetupRemote = true
[filter "lfs"] [filter "lfs"]
clean = git-lfs clean -- %f clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f smudge = git-lfs smudge -- %f
process = git-lfs filter-process process = git-lfs filter-process
required = true required = true
[includeIf "gitdir:~/Repositories/blender.org/"]
[includeIf "gitdir:~/Repos/projects.blender.org/"] path = ~/.config/git/blender.gitconfig
path = ~/.config/git/blender.gitconfig

View file

@ -18,6 +18,7 @@
./services.nix ./services.nix
./modules/bootloader.nix ./modules/bootloader.nix
./modules/fonts.nix ./modules/fonts.nix
./modules/vpn.nix
]; ];
}; };
qemu = nixpkgs.lib.nixosSystem { qemu = nixpkgs.lib.nixosSystem {

View file

@ -29,24 +29,29 @@ in
"sdhci_pci" "sdhci_pci"
]; ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [
"kvm-amd"
"crypto_simd"
"cryptd"
];
boot.extraModulePackages = [ yt6801 ]; boot.extraModulePackages = [ yt6801 ];
fileSystems."/" = { fileSystems."/" =
device = "/dev/disk/by-uuid/c7cf28c3-5744-45cc-8a81-456d24e44b7a"; { device = "/dev/disk/by-uuid/292e05de-6ddb-4a31-bc8a-92314b13d5c8";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = { boot.initrd.luks.devices."luks-bbe16a5b-ae1e-4297-a250-ebb8e950e12c".device = "/dev/disk/by-uuid/bbe16a5b-ae1e-4297-a250-ebb8e950e12c";
device = "/dev/disk/by-uuid/CEF6-7DAA";
fsType = "vfat"; fileSystems."/boot" =
options = [ { device = "/dev/disk/by-uuid/28FA-4261";
"fmask=0077" fsType = "vfat";
"dmask=0077" options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/f4aac953-a60d-478a-84bc-ac659360ca03"; }
]; ];
};
swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # 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 # (the default) this is the recommended approach. When using systemd-networkd it's

View file

@ -4,6 +4,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
azure-cli azure-cli
opentofu opentofu
bao
curl curl
go-task go-task
sops sops

View file

@ -4,11 +4,11 @@ let
fontSources = { fontSources = {
sf-pro = { sf-pro = {
url = "https://devimages-cdn.apple.com/design/resources/download/SF-Pro.dmg"; url = "https://devimages-cdn.apple.com/design/resources/download/SF-Pro.dmg";
hash = "sha256-IccB0uWWfPCidHYX6sAusuEZX906dVYo8IaqeX7/O88="; hash = "sha256-Lk14U5iLc03BrzO5IdjUwORADqwxKSSg6rS3OlH9aa4=";
}; };
sf-compact = { sf-compact = {
url = "https://devimages-cdn.apple.com/design/resources/download/SF-Compact.dmg"; url = "https://devimages-cdn.apple.com/design/resources/download/SF-Compact.dmg";
hash = "sha256-PlraM6SwH8sTxnVBo6Lqt9B6tAZDC//VCPwr/PNcnlk="; hash = "sha256-CMNP+sL5nshwK0lGBERp+S3YinscCGTi1LVZVl+PuOM=";
}; };
sf-mono = { sf-mono = {
url = "https://devimages-cdn.apple.com/design/resources/download/SF-Mono.dmg"; url = "https://devimages-cdn.apple.com/design/resources/download/SF-Mono.dmg";

View file

@ -44,5 +44,6 @@ in
powershell powershell
git-lfs git-lfs
ruff ruff
meld
]; ];
} }

View file

@ -8,6 +8,10 @@
wayland.enable = true; wayland.enable = true;
}; };
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
qt = {
enable = true;
platformTheme = "kde";
};
# Audio system with PipeWire # Audio system with PipeWire
# Enable PipeWire and ALSA support # Enable PipeWire and ALSA support

View file

@ -38,6 +38,9 @@
cloud-utils cloud-utils
ansible-lint ansible-lint
zed-editor zed-editor
prismlauncher
runelite
bolt-launcher
]; ];
}; };