Compare commits

..

No commits in common. "783c65f2ff389aa94dbea3b87b075048a7f70c39" and "a2a9e20ba87cec2deb924f74cc47839583c8485c" have entirely different histories.

6 changed files with 36 additions and 41 deletions

View file

@ -98,10 +98,8 @@
];
};
adrastea = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
specialArgs = {inherit inputs;};
system = "x86_64-linux";
};
modules = [
./hosts/adrastea
];

View file

@ -179,6 +179,19 @@
wget
git
curl
librewolf
gnumake
gcc
cachix
gnupg
openssh
python3
steam-run
# deps for neovim compilation
lua51Packages.lua
lua51Packages.luarocks
tree-sitter
];
environment.variables = {

View file

@ -1,8 +1,4 @@
{
inputs,
system,
...
}: {
{inputs, ...}: {
imports = with inputs; [
./configuration.nix
../../modules/nixos/gaming
@ -21,10 +17,6 @@
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.backupFileExtension = "backup";
home-manager.extraSpecialArgs = {
inherit inputs;
inherit system;
};
home-manager.users.youwen = {
imports = [
./home-manager-extras

View file

@ -1,15 +1,11 @@
# 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, ... }:
{
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "usb_storage" "sdhci_pci" ];
@ -17,15 +13,15 @@
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/mapper/crypted";
fileSystems."/" =
{ device = "/dev/mapper/crypted";
fsType = "ext4";
};
boot.initrd.luks.devices."crypted".device = "/dev/disk/by-uuid/f4c552be-a4c2-4ca0-aec6-ed692d78fe24";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/852F-07F1";
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/852F-07F1";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};

View file

@ -1,8 +1,3 @@
{
inputs,
system,
...
}: {
wayland.windowManager.hyprland.settings.monitor = ["DP-1,2560x1440@165,1920x0,auto" "HDMI-A-1,1920x1080@60,0x0,1"];
wayland.windowManager.hyprland.package = inputs.stablepkgs.legacyPackages.${system}.hyprland;
}

View file

@ -24,6 +24,7 @@
wayland.windowManager.hyprland = {
enable = true;
package = inputs.stablepkgs.legacyPackages.${system}.hyprland;
settings = {
exec-once = ["waypaper --restore"];
"$mod" = "SUPER";