a
This commit is contained in:
+3
-3
@@ -20,10 +20,10 @@
|
|||||||
nixos = {
|
nixos = {
|
||||||
Hostname = "hakase";
|
Hostname = "hakase";
|
||||||
Timezone = "America/Chicago";
|
Timezone = "America/Chicago";
|
||||||
enableSteamOS = true;
|
enableSteamOS = false;
|
||||||
|
|
||||||
Boot = {
|
Boot = {
|
||||||
mode = "limine"; # systemd or grub
|
mode = "systemd"; # systemd or grub
|
||||||
};
|
};
|
||||||
Apps = {
|
Apps = {
|
||||||
packages = pkgs:
|
packages = pkgs:
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
# "DP-2, highres@165,0x1080,1,vrr,1"
|
# "DP-2, highres@165,0x1080,1,vrr,1"
|
||||||
# "DP-2, highres@180,0x1080,1,cm,hdr, sdrbrightness, 1.5, sdrsaturation, 0.98"
|
# "DP-2, highres@180,0x1080,1,cm,hdr, sdrbrightness, 1.5, sdrsaturation, 0.98"
|
||||||
"DP-2, highres@180,0x1080,1,bitdepth,10,cm,hdr,sdrbrightness,1.4,sdrsaturation,0.98"
|
"DP-2, highres@180,0x1080,1,bitdepth,10,cm,hdr,sdrbrightness,1.4,sdrsaturation,0.98"
|
||||||
"DP-1, highres@highrr,0x0,1"
|
"DP-1, highres@highrr,760x0,1"
|
||||||
"HDMI-A-1, 1920x1080@120, 20000x20000,1"
|
"HDMI-A-1, 1920x1080@120, 20000x20000,1"
|
||||||
# "HDMI-A-1, disabled"
|
# "HDMI-A-1, disabled"
|
||||||
];
|
];
|
||||||
|
|||||||
Generated
+4
-4
@@ -1421,11 +1421,11 @@
|
|||||||
"quickshell": "quickshell"
|
"quickshell": "quickshell"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1765553301,
|
"lastModified": 1765590160,
|
||||||
"narHash": "sha256-3lmVVCbRvPR0JurxSIuLBNl4olcQZrumwMOS491pMKI=",
|
"narHash": "sha256-yPQvWKXLacx12xb5yGHuWkS9dcjti0J+lXRVP88191M=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "6335cdce16e3b3ca493b4432bc62312d989321f5",
|
"rev": "c8d0cec782e26fc7b0eda80be940216e1b25bd02",
|
||||||
"revCount": 3766,
|
"revCount": 3772,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.sakamoto.dev/kenji/illogical-impulse.git"
|
"url": "https://git.sakamoto.dev/kenji/illogical-impulse.git"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -75,6 +75,7 @@
|
|||||||
powerOnBoot = true;
|
powerOnBoot = true;
|
||||||
settings = {
|
settings = {
|
||||||
General = {
|
General = {
|
||||||
|
Enable = "Source,Sink,Media,Socket";
|
||||||
# AutoEnable = true;
|
# AutoEnable = true;
|
||||||
Experimental = true;
|
Experimental = true;
|
||||||
MultiProfile = "multiple";
|
MultiProfile = "multiple";
|
||||||
|
|||||||
@@ -8,20 +8,20 @@
|
|||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" ];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/mapper/luks-9091013c-0763-40a6-8316-d44d52df3530";
|
{ device = "/dev/mapper/luks-f8bd85aa-b08e-472a-b7f6-5e190b9b9714";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.initrd.luks.devices."luks-9091013c-0763-40a6-8316-d44d52df3530".device = "/dev/disk/by-uuid/9091013c-0763-40a6-8316-d44d52df3530";
|
boot.initrd.luks.devices."luks-f8bd85aa-b08e-472a-b7f6-5e190b9b9714".device = "/dev/disk/by-uuid/f8bd85aa-b08e-472a-b7f6-5e190b9b9714";
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-uuid/B332-BF84";
|
{ device = "/dev/disk/by-uuid/72BA-AF9B";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = [ "fmask=0077" "dmask=0077" ];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
grim
|
grim
|
||||||
];
|
];
|
||||||
imports = [
|
imports = [
|
||||||
../../packages/virtualbox/default.nix
|
# ../../packages/virtualbox/default.nix
|
||||||
# ../../packages/lact/default.nix
|
# ../../packages/lact/default.nix
|
||||||
];
|
];
|
||||||
hardware.amdgpu.overdrive.enable = true;
|
hardware.amdgpu.overdrive.enable = true;
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
inputs,
|
inputs,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
@@ -12,6 +13,15 @@
|
|||||||
hyprland.useNixForConf = false;
|
hyprland.useNixForConf = false;
|
||||||
simpleStarship.enable = true;
|
simpleStarship.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# wayland.windowManager.hyprland = {
|
||||||
|
# settings = {
|
||||||
|
# monitor = lib.mkForce [
|
||||||
|
# "DP-1, highres@180,0x1080,1,bitdepth,10,cm,hdr,sdrbrightness,1.4,sdrsaturation,0.98"
|
||||||
|
# "DP-2, highres@highrr,760x0,1"
|
||||||
|
# ];
|
||||||
|
# };
|
||||||
|
# };
|
||||||
# programs.illogical-impulse.settings.simpleStarship.enable = true;
|
# programs.illogical-impulse.settings.simpleStarship.enable = true;
|
||||||
home.packages = [
|
home.packages = [
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user