mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-02 23:19:41 +00:00
ref: nixos config
This commit is contained in:
parent
ad31348634
commit
934c47c26a
10 changed files with 115 additions and 132 deletions
|
|
@ -1,15 +1,34 @@
|
|||
{pkgs, ...}: {
|
||||
system.stateVersion = "23.11";
|
||||
|
||||
boot.loader = {
|
||||
systemd-boot.enable = true;
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
|
||||
programs.fish.enable = true;
|
||||
environment.shells = [pkgs.fish];
|
||||
users.users.leana = {
|
||||
shell = pkgs.fish;
|
||||
isNormalUser = true;
|
||||
description = "leana";
|
||||
extraGroups = ["networkmanager" "wheel"];
|
||||
packages = [];
|
||||
};
|
||||
|
||||
sound = {
|
||||
enable = true;
|
||||
mediaKeys.enable = true;
|
||||
};
|
||||
hardware.pulseaudio.enable = true;
|
||||
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
|
||||
./bootloader.nix
|
||||
./locale.nix
|
||||
./networking.nix
|
||||
./packages.nix
|
||||
./sound.nix
|
||||
./users.nix
|
||||
./gui.nix
|
||||
];
|
||||
|
||||
nix = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue