Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
flake/devices/pixel/base.nix

31 lines
633 B
Nix
Raw Normal View History

2023-01-02 08:56:35 +00:00
{pkgs, lib, ...}: {
system.stateVersion = "22.11";
time.timeZone = "America/Los_Angeles";
user.shell = "${pkgs.fish}/bin/fish";
nix = {
extraOptions = ''
experimental-features = nix-command flakes
'';
};
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
config = {pkgs, ...}: {
imports = [
../../users/relms/base.nix
../../users/relms/shell.nix
../../users/relms/dev.nix
];
manual.manpages.enable = false;
services.gpg-agent.pinentryFlavor = lib.mkForce "curses";
programs.neovim.enable = lib.mkForce false;
};
};
}