System/flake.nix

110 lines
3.3 KiB
Nix
Raw Normal View History

2021-12-20 13:37:26 -05:00
{
description = "Nathan's system configurations";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-21.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
fenix = {
url = "github:nix-community/fenix";
};
emacs = {
url = "github:nix-community/emacs-overlay";
2022-01-26 16:53:39 -05:00
};
mozilla = {
url = "github:mozilla/nixpkgs-mozilla";
flake = false;
2021-12-20 13:37:26 -05:00
};
2022-02-03 06:29:22 -05:00
sops-nix.url = "github:Mic92/sops-nix";
2022-02-03 14:00:50 -05:00
home-manager.url = "github:nix-community/home-manager";
2021-12-20 13:37:26 -05:00
};
2022-02-03 14:00:50 -05:00
outputs = { self, nixpkgs, nixpkgs-unstable, fenix, emacs, mozilla, sops-nix, home-manager }:
2021-12-23 00:45:21 -05:00
let
coreModules = [
./modules/common.nix
./modules/ssh.nix
./applications/utils-core.nix
2022-02-03 06:29:22 -05:00
sops-nix.nixosModules.sops
2022-02-03 14:00:50 -05:00
home-manager.nixosModules.home-manager
## Setup binary caches
2022-01-26 17:29:11 -05:00
({ pkgs, ... }: {
# First install cachix, so we can discover new ones
environment.systemPackages = [ pkgs.cachix ];
# Then configure up the nix community cache
nix = {
binaryCaches = [
"https://nix-community.cachix.org"
];
binaryCachePublicKeys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
})
2022-02-03 06:29:22 -05:00
## Setup sops
({ pkgs, config, ... }: {
2022-02-03 14:00:50 -05:00
# Add default secrets
2022-02-03 06:29:22 -05:00
sops.defaultSopsFile = ./secrets/nathan.yaml;
2022-02-03 14:00:50 -05:00
# Use system ssh key as an age key
2022-02-03 06:29:22 -05:00
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
2022-02-03 14:00:50 -05:00
# Load up lastfm scrobbling secret
2022-02-03 07:02:26 -05:00
sops.secrets.lastfm-conf = {
owner = "nathan";
format = "binary";
sopsFile = ./secrets/lastfm.conf;
};
2022-02-03 06:29:22 -05:00
})
2022-02-03 14:00:50 -05:00
## Setup home manager
./home.nix
2021-12-23 00:45:21 -05:00
];
desktopModules = coreModules ++ [
./modules/audio.nix
./modules/sway.nix
./modules/fonts.nix
./modules/gpg.nix
./modules/logitech.nix
./modules/qemu.nix
./modules/docker.nix
2022-02-22 04:54:51 -05:00
./modules/printing.nix
2021-12-23 00:45:21 -05:00
./applications/communications.nix
./applications/devel-core.nix
./applications/devel-rust.nix
./applications/emacs.nix
./applications/image-editing.nix
./applications/media.nix
./applications/syncthing.nix
./desktop.nix
];
2022-01-26 16:53:39 -05:00
mozillaOverlay = import "${mozilla}";
2021-12-23 00:45:21 -05:00
in
2021-12-20 13:37:26 -05:00
{
nixosConfigurations.levitation = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
unstable = import nixpkgs-unstable {
config = { allowUnfree = true; };
2022-01-26 16:53:39 -05:00
overlays = [ emacs.overlay mozillaOverlay ];
2021-12-20 13:37:26 -05:00
system = "x86_64-linux";
};
fenix = fenix.packages.x86_64-linux;
};
2022-01-26 17:10:25 -05:00
modules = [
./hardware/levitation.nix
2022-01-28 00:15:33 -05:00
./modules/games.nix
2022-01-26 17:10:25 -05:00
] ++ desktopModules;
2021-12-20 13:37:26 -05:00
};
2021-12-23 00:47:40 -05:00
nixosConfigurations.x86vm = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
unstable = import nixpkgs-unstable {
config = { allowUnfree = true; };
overlays = [ emacs.overlay ];
system = "x86_64-linux";
};
fenix = fenix.packages.x86_64-linux;
};
modules = desktopModules;
};
2021-12-20 13:37:26 -05:00
};
}