.github
.hydra
.vscode
docs
keys
modules
systems
users
alice
home
systems
artemision
kernel-patches
audio.nix
configuration.nix
default.nix
desktop.nix
fingerprint.nix
fonts.nix
graphics.nix
hardware.nix
non-server.nix
polkit.nix
programs.nix
secrets.yaml
steam.nix
wifi.nix
zerotier.nix
configuration.nix
non-server.nix
programs.nix
default.nix
home.nix
secrets.yaml
richie
default.nix
.envrc
.gitignore
.sops.yaml
flake.lock
flake.nix
hydra.nix
treefmt.toml
22 lines
628 B
Nix
22 lines
628 B
Nix
{ inputs, ... }:
|
|
{
|
|
system = "x86_64-linux";
|
|
home = true;
|
|
sops = true;
|
|
modules = [
|
|
inputs.nixos-hardware-fw16.nixosModules.framework-16-7040-amd
|
|
#({ pkgs, ... }: {
|
|
# nixpkgs.overlays = [ inputs.rust-overlay.overlays.default ];
|
|
# environment.systemPackages = [ rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
|
|
# extensions = [ "rust-src" "miri" "rust-analyzer" ];
|
|
# }) ];
|
|
#})
|
|
{
|
|
environment.systemPackages = [
|
|
inputs.wired-notify.packages.x86_64-linux.default
|
|
inputs.hyprland-contrib.packages.x86_64-linux.grimblast
|
|
];
|
|
}
|
|
];
|
|
}
|