fine tuning
This commit is contained in:
@@ -11,7 +11,8 @@
|
|||||||
#------------------------------------------------#
|
#------------------------------------------------#
|
||||||
|
|
||||||
|
|
||||||
monitor=HEADLESS-2,1920x1080@60,0x0,1
|
#monitor=HEADLESS-2,1920x1080@60,0x0,1
|
||||||
|
monitor=eDP-1,1920x1080@60,0x0,1
|
||||||
|
|
||||||
exec-once=onSystemStart
|
exec-once=onSystemStart
|
||||||
|
|
||||||
|
|||||||
@@ -79,11 +79,11 @@
|
|||||||
ags &
|
ags &
|
||||||
pypr &
|
pypr &
|
||||||
lxqt-policykit-agent &
|
lxqt-policykit-agent &
|
||||||
nmcli device wifi connect EagleNet password '~?C#@ZiH' &
|
# nmcli device wifi connect EagleNet password '~?C#@ZiH' &
|
||||||
hyprctl setcursor Bibata-Modern-Classic 16 &
|
hyprctl setcursor Bibata-Modern-Classic 16 &
|
||||||
wayvnc &
|
# wayvnc &
|
||||||
hyprctl reload &
|
# hyprctl reload &
|
||||||
novnc &
|
# novnc &
|
||||||
'')
|
'')
|
||||||
|
|
||||||
(pkgs.writeShellScriptBin "colorPrefix" ''
|
(pkgs.writeShellScriptBin "colorPrefix" ''
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
powerManagement.finegrained = false;
|
powerManagement.finegrained = false;
|
||||||
open = false;
|
open = false;
|
||||||
nvidiaSettings = true;
|
nvidiaSettings = true;
|
||||||
package = config.boot.kernelPackages.nvidiaPackages.beta;
|
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||||
|
|
||||||
prime = {
|
prime = {
|
||||||
# Make sure to use the correct Bus ID values for your system!
|
# Make sure to use the correct Bus ID values for your system!
|
||||||
@@ -121,4 +121,53 @@
|
|||||||
|
|
||||||
system.stateVersion = "23.05"; # Did you read the comment?
|
system.stateVersion = "23.05"; # Did you read the comment?
|
||||||
|
|
||||||
|
# Set your time zone.
|
||||||
|
time.timeZone = "America/Chicago";
|
||||||
|
|
||||||
|
# Select internationalisation properties.
|
||||||
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
|
||||||
|
i18n.extraLocaleSettings = {
|
||||||
|
LC_ADDRESS = "en_US.UTF-8";
|
||||||
|
LC_IDENTIFICATION = "en_US.UTF-8";
|
||||||
|
LC_MEASUREMENT = "en_US.UTF-8";
|
||||||
|
LC_MONETARY = "en_US.UTF-8";
|
||||||
|
LC_NAME = "en_US.UTF-8";
|
||||||
|
LC_NUMERIC = "en_US.UTF-8";
|
||||||
|
LC_PAPER = "en_US.UTF-8";
|
||||||
|
LC_TELEPHONE = "en_US.UTF-8";
|
||||||
|
LC_TIME = "en_US.UTF-8";
|
||||||
|
};
|
||||||
|
|
||||||
|
networking = {
|
||||||
|
hostName = "laptop";
|
||||||
|
nameservers = [ "1.1.1.1" "1.0.0.1" ];
|
||||||
|
networkmanager.enable = true;
|
||||||
|
#firewall.allowedTCPPorts = [ 22 80 443 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
users.users."nathan" = {
|
||||||
|
isNormalUser = true;
|
||||||
|
initialPassword = "7567";
|
||||||
|
#hashedPasswordFile = config.sops.secrets."nathan/pass".path;
|
||||||
|
extraGroups = [
|
||||||
|
"wheel"
|
||||||
|
"podman"
|
||||||
|
]; # Enable ‘sudo’ for the user.
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAsU69CxfQk58CvItPN426h5Alnpb60SH37wet97Vb57 nathan@laptop"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
nix = {
|
||||||
|
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
||||||
|
settings = {
|
||||||
|
experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
fonts.packages = with pkgs; [ nerdfonts ];
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user