nix/nix-on-droid/ty-pixel/default.nix

26 lines
639 B
Nix
Raw Normal View History

2024-12-21 22:43:29 -07:00
{ inputs, pkgs, ... }: {
2024-12-21 22:29:34 -07:00
imports = [
./environment.nix
# Import full home-manager config
../../home-manager
];
2024-12-21 11:15:14 -07:00
2024-12-21 22:29:34 -07:00
meta.home-manager = { preset = "cli"; interface = "nix-on-droid"; };
2024-12-21 11:15:14 -07:00
2024-12-21 22:29:34 -07:00
nix = {
extraOptions = ''
experimental-features = nix-command flakes
'';
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
2024-12-21 11:15:14 -07:00
};
2024-12-21 22:29:34 -07:00
user.shell = "${pkgs.zsh}/bin/zsh";
time.timeZone = "America/Denver";
terminal = {
font = "${pkgs.nerd-fonts.fira-code}/share/fonts/truetype/NerdFonts/FiraCode/FiraCodeNerdFont-Regular.ttf";
};
2024-12-21 11:15:14 -07:00
2024-12-21 22:29:34 -07:00
system.stateVersion = "24.05";
2024-12-21 11:15:14 -07:00
}