remove mail
This commit is contained in:
parent
b77f3edc41
commit
d975f43b3e
17 changed files with 25 additions and 321 deletions
|
@ -1,3 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = [pkgs.wl-clipboard];
|
||||
}
|
|
@ -1,7 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./clipboard.nix
|
||||
./docker.nix
|
||||
./flatpak.nix
|
||||
./fonts.nix
|
||||
./fs.nix
|
||||
|
@ -15,7 +13,6 @@
|
|||
./plasma.nix
|
||||
./printing.nix
|
||||
./syncthing.nix
|
||||
./users.nix
|
||||
./vm.nix
|
||||
./wine.nix
|
||||
];
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
virtualisation.docker.enable = true;
|
||||
}
|
|
@ -1,25 +1,3 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
# FIXME: This is unnecessary when https://github.com/NixOS/nixpkgs/pull/262462 is merged
|
||||
system.fsPackages = [pkgs.bindfs];
|
||||
fileSystems = let
|
||||
mkRoSymBind = path: {
|
||||
device = path;
|
||||
fsType = "fuse.bindfs";
|
||||
options = ["ro" "resolve-symlinks" "x-gvfs-hide"];
|
||||
};
|
||||
aggregatedFonts = pkgs.buildEnv {
|
||||
name = "system-fonts";
|
||||
paths = config.fonts.packages;
|
||||
pathsToLink = ["/share/fonts"];
|
||||
};
|
||||
in {
|
||||
"/usr/share/icons" = mkRoSymBind "/run/current-system/sw/share/icons";
|
||||
"/usr/share/fonts" = mkRoSymBind (aggregatedFonts + "/share/fonts");
|
||||
};
|
||||
|
||||
services.flatpak.enable = true;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{pkgs, ...}: let
|
||||
package = pkgs.neovide;
|
||||
in {
|
||||
environment.systemPackages = [package];
|
||||
environment.systemPackages = [package pkgs.wl-clipboard];
|
||||
}
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
{config, ...}: {
|
||||
age.secrets.user-guest.file = ../../secrets/user-guest.age;
|
||||
|
||||
users = {
|
||||
groups.guest = {};
|
||||
|
||||
users.guest = {
|
||||
isNormalUser = true;
|
||||
hashedPasswordFile = config.age.secrets.user-guest.path;
|
||||
extraGroups = ["wheel" "networkmanager" "gamemode"];
|
||||
};
|
||||
};
|
||||
|
||||
services.displayManager.hiddenUsers = ["guest"];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue