Compare commits
5 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b092cd3df | ||
|
|
f37c9d6f69 | ||
|
|
06da4ff7fe | ||
|
|
e29653e202 | ||
|
|
5001195716 |
8 changed files with 43 additions and 29 deletions
|
|
@ -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
|
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
|
|
||||||
|
|
@ -44,5 +44,6 @@ in
|
||||||
powershell
|
powershell
|
||||||
git-lfs
|
git-lfs
|
||||||
ruff
|
ruff
|
||||||
|
meld
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,9 @@
|
||||||
cloud-utils
|
cloud-utils
|
||||||
ansible-lint
|
ansible-lint
|
||||||
zed-editor
|
zed-editor
|
||||||
|
prismlauncher
|
||||||
|
runelite
|
||||||
|
bolt-launcher
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue