set up nixos on yukari

This commit is contained in:
insects 2024-08-10 19:16:09 +02:00
parent e2b9168d8f
commit 9373febdb6
9 changed files with 191 additions and 2 deletions

21
flake.lock generated
View file

@ -21,6 +21,26 @@
"type": "github" "type": "github"
} }
}, },
"nix-index-database": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1722740924,
"narHash": "sha256-UQPgA5d8azLZuDHZMPmvDszhuKF1Ek89SrTRtqsQ4Ss=",
"owner": "nix-community",
"repo": "nix-index-database",
"rev": "97ca0a0fca0391de835f57e44f369a283e37890f",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "nix-index-database",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1722813957, "lastModified": 1722813957,
@ -56,6 +76,7 @@
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nix-index-database": "nix-index-database",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgs-stable": "nixpkgs-stable" "nixpkgs-stable": "nixpkgs-stable"
} }

View file

@ -9,6 +9,10 @@
# Home manager # Home manager
home-manager.url = "github:nix-community/home-manager/master"; home-manager.url = "github:nix-community/home-manager/master";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";
# nix-index
nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = outputs =
@ -47,6 +51,13 @@
./nixos/enoko/configuration.nix ./nixos/enoko/configuration.nix
]; ];
}; };
yukari = lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [
./nixos/yukari/configuration.nix
];
};
}; };
homeConfigurations = { homeConfigurations = {

View file

@ -1,5 +1,6 @@
{ inputs, lib, pkgs, config, outputs, ... }: { { inputs, lib, pkgs, config, outputs, ... }: {
imports = [ imports = [
inputs.nix-index-database.hmModules.nix-index
./common/cli ./common/cli
./common/universal ./common/universal
] ++ (builtins.attrValues outputs.homeManagerModules); ] ++ (builtins.attrValues outputs.homeManagerModules);
@ -24,7 +25,12 @@
programs = { programs = {
home-manager.enable = true; home-manager.enable = true;
git.enable = true; };
programs.git = {
enable = true;
userEmail = "shadows@with.al";
userName = "liv";
}; };
home = { home = {

View file

@ -1,5 +1,8 @@
# yukari is an arch-based (for now) distro running in Windows under WSL # yukari is an arch-based (for now) distro running in Windows under WSL
# as such, it does not have or need a graphical shell # as such, it does not have or need a graphical shell
{ inputs, lib, pkgs, ... }: { { inputs, lib, pkgs, ... }: {
# nothing here yet... imports = [
./global.nix
./desktop/hyprland
];
} }

12
nixos/common/audio.nix Normal file
View file

@ -0,0 +1,12 @@
{ inputs, config, pkgs, ... }: {
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
environment.systemPackages = with pkgs; [
pavucontrol
];
}

5
nixos/common/default.nix Normal file
View file

@ -0,0 +1,5 @@
{ ... }: {
imports = [
./audio.nix
];
}

View file

@ -7,6 +7,7 @@
... ...
}: { }: {
imports = [ imports = [
../common
./hardware-configuration.nix ./hardware-configuration.nix
]; ];

View file

@ -0,0 +1,89 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
../common
./hardware-configuration.nix
];
nixpkgs = {
config = {
allowUnfree = true;
};
};
nix = let
flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs;
in {
settings = {
experimental-features = "nix-command flakes";
flake-registry = "";
nix-path = config.nix.nixPath;
};
channel.enable = false;
registry = lib.mapAttrs (_: flake: {inherit flake;}) flakeInputs;
nixPath = lib.mapAttrsToList (n: _: "${n}=flake:${n}") flakeInputs;
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "yukari";
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_DE.UTF-8";
LC_IDENTIFICATION = "de_DE.UTF-8";
LC_MEASUREMENT = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8";
LC_NUMERIC = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
users.users = {
lu = {
shell = pkgs.fish;
isNormalUser = true;
extraGroups = ["wheel"];
};
};
# network stuff
networking.networkmanager = {
enable = true;
};
# fish shell
programs.fish = {
enable = true;
vendor = {
completions.enable = true;
config.enable = true;
functions.enable = true;
};
};
# hyprland stuff
programs.hyprland = {
enable = true;
};
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "23.11";
}

View file

@ -0,0 +1,41 @@
# 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" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/d8551435-6a35-4ae9-b977-fd5a261c9be7";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/5704-1642";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/d52209e9-f625-46a9-800a-88598ed6fcd5"; }
];
# 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.enp7s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp6s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}