minor changes
This commit is contained in:
+1
-1
@@ -20,7 +20,7 @@
|
|||||||
nixos = {
|
nixos = {
|
||||||
Hostname = "hakase";
|
Hostname = "hakase";
|
||||||
Timezone = "America/Chicago";
|
Timezone = "America/Chicago";
|
||||||
enableSteamOS = true;
|
enableSteamOS = false;
|
||||||
|
|
||||||
Boot = {
|
Boot = {
|
||||||
mode = "systemd"; # systemd or grub
|
mode = "systemd"; # systemd or grub
|
||||||
|
|||||||
Generated
+3
-3
@@ -1311,11 +1311,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_4": {
|
"nixpkgs_4": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1751271578,
|
"lastModified": 1755186698,
|
||||||
"narHash": "sha256-P/SQmKDu06x8yv7i0s8bvnnuJYkxVGBWLWHaU+tt4YY=",
|
"narHash": "sha256-wNO3+Ks2jZJ4nTHMuks+cxAiVBGNuEBXsT29Bz6HASo=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "3016b4b15d13f3089db8a41ef937b13a9e33a8df",
|
"rev": "fbcf476f790d8a217c3eab4e12033dc4a0f6d23c",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../lanzaboote.nix
|
|
||||||
../../modules/default/apps.nix
|
../../modules/default/apps.nix
|
||||||
../../modules/default/desktop.nix
|
../../modules/default/desktop.nix
|
||||||
../../modules/default/remote.nix
|
../../modules/default/remote.nix
|
||||||
@@ -107,7 +106,7 @@
|
|||||||
|
|
||||||
systemd = {
|
systemd = {
|
||||||
network.enable = true;
|
network.enable = true;
|
||||||
extraConfig = "DefaultTimeoutStopSec=5s";
|
# extraConfig = "DefaultTimeoutStopSec=5s";
|
||||||
};
|
};
|
||||||
|
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
@@ -137,13 +136,13 @@
|
|||||||
|
|
||||||
getty.autologinUser = lib.mkOverride 10 "${myConfig.essentials.Username}";
|
getty.autologinUser = lib.mkOverride 10 "${myConfig.essentials.Username}";
|
||||||
|
|
||||||
# greetd = {
|
greetd = {
|
||||||
# enable = true;
|
enable = true;
|
||||||
# settings.default_session = {
|
settings.default_session = {
|
||||||
# user = lib.mkOverride 10 "${myConfig.essentials.Username}";
|
user = lib.mkOverride 10 "${myConfig.essentials.Username}";
|
||||||
# command = lib.mkOverride 10 "Hyprland";
|
command = lib.mkOverride 10 "Hyprland";
|
||||||
# };
|
};
|
||||||
# };
|
};
|
||||||
|
|
||||||
flatpak.enable = true;
|
flatpak.enable = true;
|
||||||
seatd.enable = true;
|
seatd.enable = true;
|
||||||
|
|||||||
@@ -7,5 +7,9 @@
|
|||||||
dualsensectl
|
dualsensectl
|
||||||
protontricks
|
protontricks
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
|
tldr
|
||||||
|
];
|
||||||
|
imports = [
|
||||||
|
../../packages/virtualbox/default.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,13 @@
|
|||||||
};
|
};
|
||||||
systemd-boot = lib.mkIf (myConfig.nixos.Boot.mode == "systemd") {
|
systemd-boot = lib.mkIf (myConfig.nixos.Boot.mode == "systemd") {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
# xbootldrMountPoint = "/boot";
|
||||||
|
|
||||||
|
edk2-uefi-shell.enable = true;
|
||||||
|
edk2-uefi-shell.sortKey = "z_edk2";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# grub ain't that great for advanced setups such as using a secure boot.
|
||||||
grub = lib.mkIf (myConfig.nixos.Boot.mode == "grub") {
|
grub = lib.mkIf (myConfig.nixos.Boot.mode == "grub") {
|
||||||
enable = true;
|
enable = true;
|
||||||
efiSupport = true;
|
efiSupport = true;
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
|
imports = [
|
||||||
|
../../lanzaboote.nix
|
||||||
|
];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
niv
|
niv
|
||||||
sbctl
|
sbctl
|
||||||
|
|||||||
@@ -9,5 +9,7 @@
|
|||||||
fcitx5-mozc-ut
|
fcitx5-mozc-ut
|
||||||
kdePackages.fcitx5-configtool
|
kdePackages.fcitx5-configtool
|
||||||
solaar
|
solaar
|
||||||
|
parted
|
||||||
|
edk2-uefi-shell
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{myConfig, ...}: {
|
||||||
virtualisation.virtualbox.host.enable = true;
|
virtualisation.virtualbox.host.enable = true;
|
||||||
users.extraGroups.vboxusers.members = ["user-with-access-to-virtualbox"];
|
users.extraGroups.vboxusers.members = ["${myConfig.essentials.Username}"];
|
||||||
virtualisation.virtualbox.host.enableExtensionPack = true;
|
virtualisation.virtualbox.host.enableExtensionPack = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user