use stable nixos-25.05 instead of unstable

This commit is contained in:
2025-10-05 15:29:24 +02:00
parent 08cf457aa3
commit 8bf17e74ef
8 changed files with 96 additions and 53 deletions

View File

@@ -1,7 +1,7 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
shared-mime-info # extended mimetype support
lxmenu-data # open with "Installed Applications"
lxde.lxmenu-data # open with "Installed Applications"
pcmanfm
];

View File

@@ -0,0 +1,25 @@
{
pkgs,
config,
...
}:
let
ifTheyExist = groups: builtins.filter (group: builtins.hasAttr group config.users.groups) groups;
in
{
users.mutableUsers = false;
users.users.pob = {
description = "A helper user to use another profile for some applications";
group = "pob";
isNormalUser = true;
shell = pkgs.fish;
extraGroups = ifTheyExist [
"networkmanager"
];
packages = with pkgs; [
firefox
wine
];
};
users.groups.pob = { };
}