added xps directory

This commit is contained in:
Rohan Deshpande 2024-09-10 22:29:52 -04:00
parent b0462a90af
commit 3c0fa30ecd
7 changed files with 349 additions and 12 deletions

View File

@ -38,5 +38,24 @@
# inputs.home-manager.nixosModules.default # inputs.home-manager.nixosModules.default
]; ];
}; };
nixosConfigurations.xps = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs;};
modules = [
./hosts/xps/configuration.nix
stylix.nixosModules.stylix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.rohand = {... }: {
imports = [
nixvim.homeManagerModules.nixvim
./hosts/xps/home.nix
];
};
}
];
};
}; };
} }

View File

@ -76,7 +76,11 @@
git git
firefox firefox
pulsemixer pulsemixer
brightnessctl
]; ];
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
};
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
# started in user sessions. # started in user sessions.
@ -133,7 +137,7 @@ nix.settings.experimental-features = ["nix-command" "flakes"];
sansSerif = config.stylix.fonts.serif; sansSerif = config.stylix.fonts.serif;
sizes = { sizes = {
applications = 10; applications = 10;
terminal = 10; terminal = 11;
}; };
}; };

View File

@ -8,20 +8,19 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/2ab1148a-2b6a-4586-b9de-79e99af37f69"; { device = "/dev/disk/by-uuid/0f5bd08c-cfaf-422c-b875-64e42029bee4";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/F256-0876"; { device = "/dev/disk/by-uuid/1424-2266";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
}; };
swapDevices = [ ]; swapDevices = [ ];
@ -31,9 +30,9 @@
# still possible to use this option, but it's recommended to use it in conjunction # still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp0s20f0u4u2.useDHCP = lib.mkDefault true; # networking.interfaces.wlp108s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
} }

View File

@ -33,11 +33,12 @@
nix-tree nix-tree
sway-contrib.grimshot sway-contrib.grimshot
runelite runelite
(discord.override { # (discord.override {
withOpenASAR = true; # withOpenASAR = true;
withVencord = true; # withVencord = true;
}) # })
obsidian obsidian
vesktop
]; ];
@ -48,7 +49,7 @@
enableSyntaxHighlighting = true; enableSyntaxHighlighting = true;
loginExtra = "sway"; loginExtra = "sway";
shellAliases = { shellAliases = {
"update" = "sudo nixos-rebuild switch --flake /home/rohand/nixos-surface-config#surface"; "update" = "sudo nixos-rebuild switch --flake /home/rohand/nixos-surface-config#xps";
}; };
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;

150
hosts/xps/configuration.nix Normal file
View File

@ -0,0 +1,150 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, stylix, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
security.polkit.enable = true;
# Set your time zone.
time.timeZone = "America/New_York";
# 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";
};
# Configure keymap in X11
services.xserver = {
layout = "us";
xkbVariant = "";
};
services.syncthing = {
enable = true;
user = "rohand";
dataDir = "/home/rohand/Documents";
configDir = "/home/rohand/Documents/.config/syncthing";
};
# Define a user account. Don't forget to set a password with passwd.
users.users.rohand = {
isNormalUser = true;
description = "Rohan Deshpande";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [];
shell = pkgs.zsh;
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
git
firefox
pulsemixer
brightnessctl
];
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
programs.zsh.enable = true;
programs.neovim.defaultEditor = true;
hardware.pulseaudio = {
enable = true;
support32Bit = true;
};
hardware.opengl.enable = true;
nix.settings.experimental-features = ["nix-command" "flakes"];
# List services that you want to enable:
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.05"; # Did you read the comment?
fonts.packages = with pkgs; [
font-awesome
nerdfonts
overpass
];
stylix = {
enable = true;
image = /home/rohand/gruvbox-wallpapers/wallpapers/irl/cactus.png;
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-medium.yaml";
fonts = {
monospace = {
package = pkgs.nerdfonts;
name = "FantasqueSansM Nerd Font";
};
serif = {
package = pkgs.nerdfonts;
name = "Overpass Nerd Font";
};
sansSerif = config.stylix.fonts.serif;
sizes = {
applications = 10;
terminal = 11;
};
};
opacity = {
terminal = 1.0;
applications = 1.0;
};
};
}

View File

@ -0,0 +1,38 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/0f5bd08c-cfaf-422c-b875-64e42029bee4";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/1424-2266";
fsType = "vfat";
};
swapDevices = [ ];
# 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
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp108s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}

126
hosts/xps/home.nix Normal file
View File

@ -0,0 +1,126 @@
{ config, pkgs, lib, ... }:
{
imports = [
./../../homeManagerModules/nixvim.nix
./../../homeManagerModules/gui/alacritty.nix
./../../homeManagerModules/gui/zathura.nix
./../../homeManagerModules/gui/qutebrowser.nix
./../../homeManagerModules/htop.nix
./../../homeManagerModules/lf.nix
./../../homeManagerModules/pandoc.nix
./../../homeManagerModules/texlive.nix
./../../homeManagerModules/bat.nix
];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "rohand";
home.homeDirectory = "/home/rohand";
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "24.05";
home.packages = with pkgs; [
autotiling
i3status
fastfetch
nix-tree
sway-contrib.grimshot
runelite
# (discord.override {
# withOpenASAR = true;
# withVencord = true;
# })
obsidian
vesktop
];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
programs.zsh = {
enable = true;
enableSyntaxHighlighting = true;
loginExtra = "sway";
shellAliases = {
"update" = "sudo nixos-rebuild switch --flake /home/rohand/nixos-surface-config#surface";
};
oh-my-zsh = {
enable = true;
plugins = ["git" "vi-mode"];
theme = "minimal";
};
};
#programs.alacritty = {
# enable = true;
#};
programs.bemenu = {
enable = true;
};
programs.ranger = {
enable = true;
};
wayland.windowManager.sway = {
enable = true;
config = rec {
modifier = "Mod4";
menu = "bemenu-run";
gaps = {
inner = 10;
outer = 4;
smartGaps = false;
};
terminal = "alacritty";
window.titlebar = false;
startup = [
{command = "autotiling";}
];
keybindings =
let
modifier = config.wayland.windowManager.sway.config.modifier;
searchConfig = pkgs.writeShellApplication {
name = "searchConfig";
text = ''
find /home/rohand/nixos-surface-config \( ! -regex './\..*' \) -type f \
| bemenu -p "Edit which config file?" \
| xargs alacritty -e nvim \
'';
};
in lib.mkOptionDefault {
"${modifier}+n" = "exec ${lib.getExe searchConfig}" ;
"${modifier}+Shift+r" = "exec alacritty -e lf";
"${modifier}+q" = "kill";
"${modifier}+Shift+n" = "exec alacritty -e nvim -c VimwikiIndex";
"Print" = "exec ${pkgs.sway-contrib.grimshot}/bin/grimshot save area";
};
bars = [
({
mode = "dock";
hiddenState = "hide";
position = "top";
workspaceButtons = true;
workspaceNumbers = false;
statusCommand = "i3status";
trayOutput = "primary";
} // config.lib.stylix.sway.bar)
];
};
};
home.sessionVariables = {
OPENER = "rifle";
EDITOR = "nvim";
_JAVA_AWT_WM_NONREPARENTING = 1;
# MANPAGER = "sh -c 'col -bx | bat -l man -p'";
MANPAGER = "nvim +Man!";
# MANROFFOPT = "-c";
};
}