mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-18 17:11:39 +01:00
formatting
This commit is contained in:
parent
d8f9425bed
commit
7d0571f4a9
10 changed files with 39 additions and 34 deletions
|
@ -5,7 +5,8 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ (modulesPath + "/profiles/qemu-guest.nix")
|
[
|
||||||
|
(modulesPath + "/profiles/qemu-guest.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "ata_piix" "virtio_pci" "virtio_scsi" "xhci_pci" "sd_mod" "sr_mod" ];
|
boot.initrd.availableKernelModules = [ "ata_piix" "virtio_pci" "virtio_scsi" "xhci_pci" "sd_mod" "sr_mod" ];
|
||||||
|
@ -14,12 +15,14 @@
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/disk/by-uuid/da06b92f-6eb6-45d5-9409-4d897a40d70e";
|
{
|
||||||
|
device = "/dev/disk/by-uuid/da06b92f-6eb6-45d5-9409-4d897a40d70e";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot/efi" =
|
fileSystems."/boot/efi" =
|
||||||
{ device = "/dev/disk/by-uuid/B677-3035";
|
{
|
||||||
|
device = "/dev/disk/by-uuid/B677-3035";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
DHCP = "ipv4";
|
DHCP = "ipv4";
|
||||||
IPv6AcceptRA = "yes";
|
IPv6AcceptRA = "yes";
|
||||||
Address = "2a01:4f8:c012:49de::1/64";
|
Address = "2a01:4f8:c012:49de::1/64";
|
||||||
Gateway="fe80::1";
|
Gateway = "fe80::1";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
fileSystems."/mnt/backup" =
|
fileSystems."/mnt/backup" =
|
||||||
{
|
{
|
||||||
|
@ -14,7 +13,7 @@
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "compress=zstd" "noatime" ];
|
options = [ "compress=zstd" "noatime" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.btrbk = {
|
services.btrbk = {
|
||||||
instances."nuc-to-disk".settings = {
|
instances."nuc-to-disk".settings = {
|
||||||
snapshot_preserve = "14d";
|
snapshot_preserve = "14d";
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{config, ...}:
|
{ config, ... }:
|
||||||
let
|
let
|
||||||
domain = "cache.rfive.de";
|
domain = "cache.rfive.de";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
sops.secrets."nix-serve/secretkey" = {};
|
sops.secrets."nix-serve/secretkey" = { };
|
||||||
services.nix-serve = {
|
services.nix-serve = {
|
||||||
enable = true;
|
enable = true;
|
||||||
secretKeyFile = config.sops.secrets."nix-serve/secretkey".path;
|
secretKeyFile = config.sops.secrets."nix-serve/secretkey".path;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, ...}:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
services.greetd = {
|
services.greetd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -11,7 +11,8 @@
|
||||||
owner = config.users.users.systemd-network.name;
|
owner = config.users.users.systemd-network.name;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
networking = { useNetworkd = true;
|
networking = {
|
||||||
|
useNetworkd = true;
|
||||||
hostName = "thinkpad";
|
hostName = "thinkpad";
|
||||||
enableIPv6 = true;
|
enableIPv6 = true;
|
||||||
wireless = {
|
wireless = {
|
||||||
|
|
|
@ -23,15 +23,15 @@ stdenv.mkDerivation rec {
|
||||||
# we prepare our library path in the let clause to avoid it become part of the input of mkDerivation
|
# we prepare our library path in the let clause to avoid it become part of the input of mkDerivation
|
||||||
libPath = lib.makeLibraryPath [
|
libPath = lib.makeLibraryPath [
|
||||||
#(curlWithGnuTls.overrideAttrs (oldAttrs: rec {
|
#(curlWithGnuTls.overrideAttrs (oldAttrs: rec {
|
||||||
#version = "7.81.0";
|
#version = "7.81.0";
|
||||||
#src = fetchurl {
|
#src = fetchurl {
|
||||||
#urls = [
|
#urls = [
|
||||||
#"https://curl.haxx.se/download/curl-${version}.tar.bz2"
|
#"https://curl.haxx.se/download/curl-${version}.tar.bz2"
|
||||||
#"https://github.com/curl/curl/releases/download/curl-${version}/curl-${version}.tar.bz2"
|
#"https://github.com/curl/curl/releases/download/curl-${version}/curl-${version}.tar.bz2"
|
||||||
#];
|
#];
|
||||||
#hash = "sha256-Hno41wGOwGDx8W34OYVPCInpThIsTPpdOjfC3Fbx4lg=";
|
#hash = "sha256-Hno41wGOwGDx8W34OYVPCInpThIsTPpdOjfC3Fbx4lg=";
|
||||||
##hash = "sha256-m2selrdI0EuWh4a2vfQHqlx1q1Oj03wcjIHNtzZVXM8=";
|
##hash = "sha256-m2selrdI0EuWh4a2vfQHqlx1q1Oj03wcjIHNtzZVXM8=";
|
||||||
#};
|
#};
|
||||||
#})) # libcurl-gnutls.so.4
|
#})) # libcurl-gnutls.so.4
|
||||||
#curlWithGnuTls
|
#curlWithGnuTls
|
||||||
libX11 # libX11.so.6
|
libX11 # libX11.so.6
|
||||||
|
|
|
@ -225,10 +225,10 @@ in
|
||||||
msmtp.enable = true;
|
msmtp.enable = true;
|
||||||
neomutt = let c = mbsync.groups.ifsr.channels; in
|
neomutt = let c = mbsync.groups.ifsr.channels; in
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
mailboxName = " iFSR";
|
mailboxName = " iFSR";
|
||||||
extraMailboxes = lib.lists.forEach [ c.admin c.sent c.trash c.junk c.drafts ] (x: x.nearPattern);
|
extraMailboxes = lib.lists.forEach [ c.admin c.sent c.trash c.junk c.drafts ] (x: x.nearPattern);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"gmail" = rec {
|
"gmail" = rec {
|
||||||
address = "seifertrouven@gmail.com";
|
address = "seifertrouven@gmail.com";
|
||||||
|
@ -283,10 +283,10 @@ in
|
||||||
msmtp.enable = true;
|
msmtp.enable = true;
|
||||||
neomutt = let c = mbsync.groups.gmail.channels; in
|
neomutt = let c = mbsync.groups.gmail.channels; in
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
mailboxName = " gmail";
|
mailboxName = " gmail";
|
||||||
extraMailboxes = lib.lists.forEach [ c.sent c.trash c.junk c.drafts ] (x: x.nearPattern);
|
extraMailboxes = lib.lists.forEach [ c.sent c.trash c.junk c.drafts ] (x: x.nearPattern);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.file.".urlview".text = ''
|
home.file.".urlview".text = ''
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ config, hyprpaper, ... }:
|
{ config, hyprpaper, ... }:
|
||||||
let
|
let
|
||||||
hyprpaper-pkg = hyprpaper.packages.x86_64-linux.default;
|
hyprpaper-pkg = hyprpaper.packages.x86_64-linux.default;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
@ -7,12 +7,12 @@ in
|
||||||
hyprpaper-pkg
|
hyprpaper-pkg
|
||||||
];
|
];
|
||||||
xdg.configFile."hypr/hyprpaper.conf".text = ''
|
xdg.configFile."hypr/hyprpaper.conf".text = ''
|
||||||
preload = ${../../../../images/wallpaper.png}
|
preload = ${../../../../images/wallpaper.png}
|
||||||
wallpaper =eDP-1, ${../../../../images/wallpaper.png}
|
wallpaper =eDP-1, ${../../../../images/wallpaper.png}
|
||||||
wallpaper =HDMI-A-1, ${../../../../images/wallpaper.png}
|
wallpaper =HDMI-A-1, ${../../../../images/wallpaper.png}
|
||||||
'';
|
'';
|
||||||
systemd.user.services.hyprpaper = {
|
systemd.user.services.hyprpaper = {
|
||||||
Install.WantedBy = ["graphical-session.target"];
|
Install.WantedBy = [ "graphical-session.target" ];
|
||||||
Service = {
|
Service = {
|
||||||
ExecStart = "${hyprpaper-pkg}/bin/hyprpaper";
|
ExecStart = "${hyprpaper-pkg}/bin/hyprpaper";
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
|
|
|
@ -1,12 +1,14 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.nixvim = { enable = true;
|
programs.nixvim = {
|
||||||
|
enable = true;
|
||||||
vimAlias = true;
|
vimAlias = true;
|
||||||
colorscheme = "dracula";
|
colorscheme = "dracula";
|
||||||
options =
|
options =
|
||||||
{
|
{
|
||||||
shiftwidth = 4;
|
shiftwidth = 4;
|
||||||
expandtab = true; preserveindent = true;
|
expandtab = true;
|
||||||
|
preserveindent = true;
|
||||||
number = true;
|
number = true;
|
||||||
relativenumber = true;
|
relativenumber = true;
|
||||||
tabstop = 4;
|
tabstop = 4;
|
||||||
|
|
Loading…
Reference in a new issue