updates
This commit is contained in:
parent
a82e6b789f
commit
7e17ef312d
8 changed files with 119 additions and 93 deletions
|
|
@ -1,43 +1,68 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "sd_mod" ];
|
boot.initrd.availableKernelModules = [
|
||||||
|
"xhci_pci"
|
||||||
|
"ahci"
|
||||||
|
"nvme"
|
||||||
|
"usbhid"
|
||||||
|
"sd_mod"
|
||||||
|
];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [
|
||||||
boot.extraModulePackages = [ ];
|
"v4l2loopback"
|
||||||
|
"snd-aloop"
|
||||||
|
"kvm-intel"
|
||||||
|
];
|
||||||
|
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback.out ];
|
||||||
|
boot.extraModprobeConfig = ''
|
||||||
|
# exclusive_caps: Skype, Zoom, Teams etc. will only show device when actually streaming
|
||||||
|
# card_label: Name of virtual camera, how it'll show up in Skype, Zoom, Teams
|
||||||
|
# https://github.com/umlaeute/v4l2loopback
|
||||||
|
options v4l2loopback exclusive_caps=1 card_label="Virtual Camera"
|
||||||
|
'';
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{ device = "/dev/disk/by-uuid/d83ec136-df01-4b9e-a523-6d75726fb904";
|
device = "/dev/disk/by-uuid/d83ec136-df01-4b9e-a523-6d75726fb904";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=@" ];
|
options = [ "subvol=@" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/nix" =
|
fileSystems."/nix" = {
|
||||||
{ device = "/dev/disk/by-uuid/e369d905-a82b-45c5-838a-323169233583";
|
device = "/dev/disk/by-uuid/e369d905-a82b-45c5-838a-323169233583";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{ device = "/dev/disk/by-uuid/6444-169A";
|
device = "/dev/disk/by-uuid/6444-169A";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = [
|
||||||
};
|
"fmask=0077"
|
||||||
|
"dmask=0077"
|
||||||
fileSystems."/home" =
|
|
||||||
{ device = "/dev/disk/by-uuid/881bdf55-1e43-4bfc-a1bf-3b2f72dbc122";
|
|
||||||
fsType = "btrfs";
|
|
||||||
};
|
|
||||||
|
|
||||||
swapDevices =
|
|
||||||
[ { device = "/dev/disk/by-uuid/056af100-9382-4cbd-b3d5-90df7da69585"; }
|
|
||||||
];
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/home" = {
|
||||||
|
device = "/dev/disk/by-uuid/881bdf55-1e43-4bfc-a1bf-3b2f72dbc122";
|
||||||
|
fsType = "btrfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
swapDevices = [
|
||||||
|
{ device = "/dev/disk/by-uuid/056af100-9382-4cbd-b3d5-90df7da69585"; }
|
||||||
|
];
|
||||||
|
|
||||||
# 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
|
||||||
|
|
|
||||||
|
|
@ -1,28 +1,46 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "sdhci_pci" ];
|
boot.initrd.availableKernelModules = [ "sdhci_pci" ];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ ];
|
boot.kernelModules = [
|
||||||
boot.extraModulePackages = [ ];
|
"v4l2loopback"
|
||||||
|
"snd-aloop"
|
||||||
|
];
|
||||||
|
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback.out ];
|
||||||
|
boot.extraModprobeConfig = ''
|
||||||
|
# exclusive_caps: Skype, Zoom, Teams etc. will only show device when actually streaming
|
||||||
|
# card_label: Name of virtual camera, how it'll show up in Skype, Zoom, Teams
|
||||||
|
# https://github.com/umlaeute/v4l2loopback
|
||||||
|
options v4l2loopback exclusive_caps=1 card_label="Virtual Camera"
|
||||||
|
'';
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{ device = "/dev/disk/by-uuid/8a3cb91f-2e3f-498d-8613-230976dff36e";
|
device = "/dev/disk/by-uuid/8a3cb91f-2e3f-498d-8613-230976dff36e";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{ device = "/dev/disk/by-uuid/FA86-1704";
|
device = "/dev/disk/by-uuid/FA86-1704";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0022" "dmask=0022" ];
|
options = [
|
||||||
};
|
"fmask=0022"
|
||||||
|
"dmask=0022"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,7 @@
|
||||||
gimp
|
gimp
|
||||||
calibre
|
calibre
|
||||||
spotify-player
|
spotify-player
|
||||||
|
obs-studio
|
||||||
|
|
||||||
# browsers
|
# browsers
|
||||||
# (chromium.override {
|
# (chromium.override {
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
policies = {
|
policies = {
|
||||||
BlockAboutConfig = true;
|
BlockAboutConfig = false;
|
||||||
DefaultDownloadDirectory = "\${home}/Downloads";
|
DefaultDownloadDirectory = "\${home}/Downloads";
|
||||||
# Check about:support for extension/add-on ID strings.
|
# Check about:support for extension/add-on ID strings.
|
||||||
# Valid strings for installation_mode are "allowed", "blocked",
|
# Valid strings for installation_mode are "allowed", "blocked",
|
||||||
|
|
|
||||||
|
|
@ -15,22 +15,15 @@
|
||||||
catppuccin-cursors.mochaLight
|
catppuccin-cursors.mochaLight
|
||||||
catppuccin-cursors.mochaBlue
|
catppuccin-cursors.mochaBlue
|
||||||
|
|
||||||
(
|
(catppuccin-kde.override {
|
||||||
(catppuccin-kde.override {
|
flavour = [
|
||||||
flavour = [
|
"latte"
|
||||||
"latte"
|
"mocha"
|
||||||
"mocha"
|
];
|
||||||
];
|
accents = [
|
||||||
accents = [
|
"blue"
|
||||||
"blue"
|
];
|
||||||
];
|
})
|
||||||
}).overrideAttrs
|
|
||||||
(oldAttrs: {
|
|
||||||
postInstall = ''
|
|
||||||
rm -rf $out/share/aurorae
|
|
||||||
'';
|
|
||||||
})
|
|
||||||
)
|
|
||||||
|
|
||||||
# steam gtk theming
|
# steam gtk theming
|
||||||
adwsteamgtk
|
adwsteamgtk
|
||||||
|
|
|
||||||
|
|
@ -20,22 +20,15 @@
|
||||||
catppuccin-cursors.mochaLight
|
catppuccin-cursors.mochaLight
|
||||||
catppuccin-cursors.mochaPeach
|
catppuccin-cursors.mochaPeach
|
||||||
|
|
||||||
(
|
(catppuccin-kde.override {
|
||||||
(catppuccin-kde.override {
|
flavour = [
|
||||||
flavour = [
|
"latte"
|
||||||
"latte"
|
"mocha"
|
||||||
"mocha"
|
];
|
||||||
];
|
accents = [
|
||||||
accents = [
|
"peach"
|
||||||
"peach"
|
];
|
||||||
];
|
})
|
||||||
}).overrideAttrs
|
|
||||||
(oldAttrs: {
|
|
||||||
postInstall = ''
|
|
||||||
rm -rf $out/share/aurorae
|
|
||||||
'';
|
|
||||||
})
|
|
||||||
)
|
|
||||||
|
|
||||||
moonlight-qt
|
moonlight-qt
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -15,22 +15,15 @@
|
||||||
catppuccin-cursors.mochaLight
|
catppuccin-cursors.mochaLight
|
||||||
catppuccin-cursors.mochaGreen
|
catppuccin-cursors.mochaGreen
|
||||||
|
|
||||||
(
|
(catppuccin-kde.override {
|
||||||
(catppuccin-kde.override {
|
flavour = [
|
||||||
flavour = [
|
"latte"
|
||||||
"latte"
|
"mocha"
|
||||||
"mocha"
|
];
|
||||||
];
|
accents = [
|
||||||
accents = [
|
"green"
|
||||||
"green"
|
];
|
||||||
];
|
})
|
||||||
}).overrideAttrs
|
|
||||||
(oldAttrs: {
|
|
||||||
postInstall = ''
|
|
||||||
rm -rf $out/share/aurorae
|
|
||||||
'';
|
|
||||||
})
|
|
||||||
)
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -83,6 +83,9 @@
|
||||||
cache.enable = true;
|
cache.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.nix-ld.enable = true;
|
||||||
|
programs.nix-ld.libraries = with pkgs; [ ];
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue