Compare commits
No commits in common. "e01daac2fc5fc309a1626bab02f2301799864580" and "3b9cd8ae5f0a37b6d3614ba2d6a43a101a67f94e" have entirely different histories.
e01daac2fc
...
3b9cd8ae5f
7 changed files with 43 additions and 74 deletions
|
@ -4,4 +4,5 @@
|
|||
imports = [
|
||||
./modules
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
@ -24,6 +24,23 @@
|
|||
# Set your time zone.
|
||||
time.timeZone = "America/Los_Angeles";
|
||||
|
||||
# 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";
|
||||
};
|
||||
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver.enable = true;
|
||||
snowhawk.dwm.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
|
@ -72,11 +89,13 @@
|
|||
description = "Zynh Ludwig";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
packages = with pkgs; [
|
||||
fish
|
||||
ripgrep
|
||||
lazygit
|
||||
unzip
|
||||
fzf
|
||||
tree
|
||||
libsecret
|
||||
|
||||
nix-output-monitor
|
||||
|
||||
|
@ -112,16 +131,6 @@
|
|||
user = "ravenshade";
|
||||
};
|
||||
|
||||
security.sudo.extraRules = [
|
||||
{
|
||||
users = [ "ravenshade" ];
|
||||
commands = [{
|
||||
command = "${pkgs.nixos-rebuild}/bin/nixos-rebuild";
|
||||
options = [ "SETENV" "NOPASSWD" ];
|
||||
}];
|
||||
}
|
||||
];
|
||||
|
||||
home-manager = {
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
users = { "ravenshade" = import ./home.nix; };
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
{ config, lib, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
|
@ -34,34 +34,10 @@
|
|||
# Load nvidia driver for Xorg and Wayland
|
||||
services.xserver.videoDrivers = lib.mkDefault [ "nvidia" ];
|
||||
services.xserver.dpi = lib.mkDefault 96;
|
||||
# services.xserver.xrandrHeads = [
|
||||
# { output = "HDMI-0"; }
|
||||
# {
|
||||
# output = "DP-0";
|
||||
# primary = true;
|
||||
# monitorConfig = ''
|
||||
# Option "Position" "1920 0"
|
||||
# '';
|
||||
# }
|
||||
# ];
|
||||
|
||||
|
||||
systemd.user.services.screenlayout = {
|
||||
script = ''
|
||||
${pkgs.xorg.xrandr}/bin/xrandr \
|
||||
--output DP-0 --primary --mode 1920x1080 --pos 1922x0 --rotate normal \
|
||||
--output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal \
|
||||
--output DP-1 --off \
|
||||
--output DP-2 --off \
|
||||
--output DP-3 --off \
|
||||
--output DP-4 --off \
|
||||
--output DP-5 --off \
|
||||
--output HDMI-1 --off
|
||||
'';
|
||||
wantedBy = [ "graphical-session.target" ];
|
||||
partOf = [ "graphical-session.target" ];
|
||||
};
|
||||
|
||||
services.xserver.xrandrHeads = [
|
||||
"HDMI-0"
|
||||
{ output = "DP-0"; primary = true; }
|
||||
];
|
||||
|
||||
hardware.nvidia = {
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
home.packages = with pkgs; [
|
||||
(writeShellScriptBin "rebuild" ''
|
||||
nixos-rebuild switch --log-format internal-json -v |& nom --json
|
||||
sudo nixos-rebuild switch --log-format internal-json -v |& nom --json
|
||||
'')
|
||||
|
||||
feh
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
{ lib, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./dwm.nix
|
||||
./i18n.nix
|
||||
];
|
||||
|
||||
snowhawk.i18n.enable = lib.mkDefault true;
|
||||
}
|
||||
|
|
|
@ -9,9 +9,6 @@ in
|
|||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver.enable = true;
|
||||
|
||||
services.xserver.windowManager.dwm = {
|
||||
enable = true;
|
||||
package = pkgs.dwm.overrideAttrs (oldAttrs: {
|
||||
|
@ -26,6 +23,22 @@ in
|
|||
fade = false;
|
||||
};
|
||||
|
||||
# systemd.user.services.screenlayout = {
|
||||
# script = ''
|
||||
# ${pkgs.xorg.xrandr}/bin/xrandr \
|
||||
# --output DP-0 --primary --mode 1920x1080 --pos 1922x0 --rotate normal \
|
||||
# --output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal \
|
||||
# --output DP-1 --off \
|
||||
# --output DP-2 --off \
|
||||
# --output DP-3 --off \
|
||||
# --output DP-4 --off \
|
||||
# --output DP-5 --off \
|
||||
# --output HDMI-1 --off
|
||||
# '';
|
||||
# wantedBy = [ "graphical-session.target" ];
|
||||
# partOf = [ "graphical-session.target" ];
|
||||
# };
|
||||
|
||||
systemd.user.services.xrootdatetime = {
|
||||
script = ''
|
||||
while true; do
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
{ lib, config, ... }:
|
||||
|
||||
let
|
||||
cfg = config.snowhawk.i18n;
|
||||
in
|
||||
{
|
||||
options.snowhawk.i18n = {
|
||||
enable = lib.mkEnableOption "i18n";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
# 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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue