prephone
This commit is contained in:
parent
1a4ef774e4
commit
201f76f230
8 changed files with 799 additions and 152 deletions
42
hosts/cutie/configuration.nix
Normal file
42
hosts/cutie/configuration.nix
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
{ 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue