43 lines
832 B
Nix
43 lines
832 B
Nix
|
|
{ lib, pkgs, ... }:
|
||
|
|
{
|
||
|
|
services.flatpak.remotes = [
|
||
|
|
{
|
||
|
|
name = "flathub";
|
||
|
|
location = "https://flathub.org/repo/flathub.flatpakrepo";
|
||
|
|
}
|
||
|
|
];
|
||
|
|
|
||
|
|
mobile.beautification = {
|
||
|
|
silentBoot = false;
|
||
|
|
splash = false;
|
||
|
|
};
|
||
|
|
|
||
|
|
users.users.lucy = {
|
||
|
|
isNormalUser = true;
|
||
|
|
hashedPassword = "$y$j9T$D1EpjBC8amO7RbwfitIHW.$qZeydQSBI0dzCm7TVUmJ4ZDzBQMMNVG6NUiTpa45XVA";
|
||
|
|
extraGroups = [
|
||
|
|
"dialout"
|
||
|
|
"feedbackd"
|
||
|
|
"networkmanager"
|
||
|
|
"video"
|
||
|
|
"wheel"
|
||
|
|
];
|
||
|
|
};
|
||
|
|
|
||
|
|
environment.systemPackages = with pkgs; [
|
||
|
|
fractal
|
||
|
|
mission-center
|
||
|
|
];
|
||
|
|
environment.sessionVariables.NIXPKGS_ALLOW_UNFREE = "1";
|
||
|
|
|
||
|
|
zramSwap.enable = true;
|
||
|
|
networking.firewall.enable = lib.mkForce false;
|
||
|
|
|
||
|
|
nix.settings.experimental-features = [
|
||
|
|
"nix-command"
|
||
|
|
"flakes"
|
||
|
|
];
|
||
|
|
|
||
|
|
system.stateVersion = "24.11";
|
||
|
|
}
|