-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
114 lines (107 loc) · 2.62 KB
/
Copy pathflake.nix
File metadata and controls
114 lines (107 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
finix.url = "/home/aaron/code/finix/plymouth"; # "github:finix-community/finix?ref=main";
# profiles.url = "/home/aaron/code/finix-profiles"; # "github:finix-community/profiles";
# profiles.inputs.finix.follows = "finix";
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
noctalia-shell.url = "github:noctalia-dev/noctalia-shell";
noctalia-shell.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
{
self,
nixpkgs,
finix,
# profiles,
sops-nix,
noctalia-shell,
}:
let
pkgs = import nixpkgs {
system = "x86_64-linux";
config.allowUnfree = true;
overlays = [
self.overlays.custom
sops-nix.overlays.default
noctalia-shell.overlays.default
];
};
in
{
overlays.custom = final: prev: {
# seatd = prev.seatd.override { systemdSupport = false; };
swayidle = prev.swayidle.override { systemdSupport = false; };
xdg-desktop-portal = prev.xdg-desktop-portal.override { enableSystemd = false; };
xwayland-satellite = prev.xwayland-satellite.override { withSystemd = false; };
};
# finix
nixosConfigurations.framework = finix.lib.finixSystem {
inherit (pkgs) lib;
modules = with finix.nixosModules; [
# profiles.laptop
{
nixpkgs.pkgs = nixpkgs.lib.mkDefault pkgs;
}
./configuration.nix
(toString nixpkgs + "/nixos/modules/programs/noisetorch.nix")
anacron
atd
bash
bluetooth
brightnessctl
chronyd
ddccontrol
dma
dropbear
earlyoom
fcron
fish
flatpak
fprintd
fstrim
fwupd
getty
gnome-keyring
greetd
gvfs
hyprland
hyprlock
illum
incus
iwd
labwc
lemurs
limine
mangowc
mariadb
nftables
niri
nix-daemon
nzbget
openssh
pmount
polkit
power-profiles-daemon
regreet
rtkit
seahorse
sudo
sway
sysklogd
system76-scheduler
thermald
tzupdate
udisks2
upower
uptime-kuma
virtualbox
xwayland-satellite
zerotierone
zfs
zzz
];
};
};
}