Compare commits
No commits in common. "104d2ce32d55fcc49ef27b25f4830ed272d41893" and "4d153acf8e2272ec413435bfc1786238120b9853" have entirely different histories.
104d2ce32d
...
4d153acf8e
11 changed files with 100 additions and 85 deletions
22
flake.lock
generated
22
flake.lock
generated
|
|
@ -15,6 +15,27 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"disko": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1746728054,
|
||||||
|
"narHash": "sha256-eDoSOhxGEm2PykZFa/x9QG5eTH0MJdiJ9aR00VAofXE=",
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "disko",
|
||||||
|
"rev": "ff442f5d1425feb86344c028298548024f21256d",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-community",
|
||||||
|
"ref": "latest",
|
||||||
|
"repo": "disko",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"flake-compat": {
|
"flake-compat": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
|
@ -294,6 +315,7 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"disko": "disko",
|
||||||
"jovian": "jovian",
|
"jovian": "jovian",
|
||||||
"lanzaboote": "lanzaboote",
|
"lanzaboote": "lanzaboote",
|
||||||
"nix-darwin": "nix-darwin",
|
"nix-darwin": "nix-darwin",
|
||||||
|
|
|
||||||
|
|
@ -8,12 +8,14 @@
|
||||||
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
|
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
nix-darwin.url = "github:LnL7/nix-darwin";
|
nix-darwin.url = "github:LnL7/nix-darwin";
|
||||||
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
|
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
disko.url = "github:nix-community/disko/latest";
|
||||||
|
disko.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
jovian.url = "github:Jovian-Experiments/Jovian-NixOS";
|
jovian.url = "github:Jovian-Experiments/Jovian-NixOS";
|
||||||
jovian.inputs.nixpkgs.follows = "nixpkgs";
|
jovian.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
|
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, lanzaboote, nix-darwin, jovian, nix-minecraft, ... }@inputs: {
|
outputs = { self, nixpkgs, lanzaboote, nix-darwin, disko, jovian, nix-minecraft, ... }@inputs: {
|
||||||
nixosConfigurations.nijika = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.nijika = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
|
|
@ -56,6 +58,7 @@
|
||||||
lanzaboote.nixosModules.lanzaboote
|
lanzaboote.nixosModules.lanzaboote
|
||||||
|
|
||||||
./hosts/nijika/configuration.nix
|
./hosts/nijika/configuration.nix
|
||||||
|
disko.nixosModules.disko
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -79,6 +82,7 @@
|
||||||
|
|
||||||
./hosts/miki/configuration.nix
|
./hosts/miki/configuration.nix
|
||||||
./hosts/nixos-common.nix
|
./hosts/nixos-common.nix
|
||||||
|
disko.nixosModules.disko
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./disko.nix
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
61
hosts/nijika/disko.nix
Normal file
61
hosts/nijika/disko.nix
Normal file
|
|
@ -0,0 +1,61 @@
|
||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
disko.devices = {
|
||||||
|
disk = {
|
||||||
|
main = {
|
||||||
|
type = "disk";
|
||||||
|
device = "/dev/nvme0n1";
|
||||||
|
content = {
|
||||||
|
type = "gpt";
|
||||||
|
partitions = {
|
||||||
|
ESP = {
|
||||||
|
size = "512M";
|
||||||
|
type = "EF00";
|
||||||
|
content = {
|
||||||
|
type = "filesystem";
|
||||||
|
format = "vfat";
|
||||||
|
mountpoint = "/boot";
|
||||||
|
mountOptions = [ "umask=0077" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
luks = {
|
||||||
|
size = "100%";
|
||||||
|
content = {
|
||||||
|
type = "luks";
|
||||||
|
name = "root";
|
||||||
|
passwordFile = "/tmp/secret.key";
|
||||||
|
settings = {
|
||||||
|
allowDiscards = true;
|
||||||
|
};
|
||||||
|
# additionalKeyFiles = [ "/tmp/additionalSecret.key" ];
|
||||||
|
content = {
|
||||||
|
type = "btrfs";
|
||||||
|
extraArgs = [ "-f" ];
|
||||||
|
subvolumes = {
|
||||||
|
"/root" = {
|
||||||
|
mountpoint = "/";
|
||||||
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
|
};
|
||||||
|
"/home" = {
|
||||||
|
mountpoint = "/home";
|
||||||
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
|
};
|
||||||
|
"/nix" = {
|
||||||
|
mountpoint = "/nix";
|
||||||
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
|
};
|
||||||
|
"/swap" = {
|
||||||
|
mountpoint = "/.swapvol";
|
||||||
|
swap.swapfile.size = "1G";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -8,44 +8,17 @@
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "uas" "sd_mod" "rtsx_pci_sdmmc" ];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
{ device = "/dev/mapper/root";
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||||
fsType = "btrfs";
|
# still possible to use this option, but it's recommended to use it in conjunction
|
||||||
options = [ "subvol=root" ];
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||||
};
|
networking.useDHCP = lib.mkDefault true;
|
||||||
|
# networking.interfaces.wlp0s20f3.useDHCP = lib.mkDefault true;
|
||||||
boot.initrd.luks.devices."root".device = "/dev/disk/by-uuid/4a0361b6-b3b4-48dd-a089-babdfa072fc2";
|
|
||||||
|
|
||||||
fileSystems."/nix" =
|
|
||||||
{ device = "/dev/mapper/root";
|
|
||||||
fsType = "btrfs";
|
|
||||||
options = [ "subvol=nix" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/.swapvol" =
|
|
||||||
{ device = "/dev/mapper/root";
|
|
||||||
fsType = "btrfs";
|
|
||||||
options = [ "subvol=swap" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/home" =
|
|
||||||
{ device = "/dev/mapper/root";
|
|
||||||
fsType = "btrfs";
|
|
||||||
options = [ "subvol=home" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/boot" =
|
|
||||||
{ device = "/dev/disk/by-uuid/1653-F2C8";
|
|
||||||
fsType = "vfat";
|
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
swapDevices = [ ];
|
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
brightnessctl
|
brightnessctl
|
||||||
helvum
|
helvum
|
||||||
fuzzel
|
walker
|
||||||
playerctl
|
playerctl
|
||||||
swaynotificationcenter
|
swaynotificationcenter
|
||||||
hyprshot
|
hyprshot
|
||||||
|
|
|
||||||
1
stow/.config/fuzzel/.gitignore
vendored
1
stow/.config/fuzzel/.gitignore
vendored
|
|
@ -1 +0,0 @@
|
||||||
colors.ini
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
[main]
|
|
||||||
include = "~/.config/fuzzel/colors.ini"
|
|
||||||
|
|
||||||
prompt="> "
|
|
||||||
placeholder="Search..."
|
|
||||||
password-character="*"
|
|
||||||
|
|
||||||
width=40
|
|
||||||
use-bold=no
|
|
||||||
dpi-aware=auto
|
|
||||||
tabs="4"
|
|
||||||
terminal="ghostty -e"
|
|
||||||
keyboard-focus=exclusive
|
|
||||||
|
|
||||||
fields=filename,name,generic,exec,keywords,comment,categories
|
|
||||||
match-mode="fzf"
|
|
||||||
sort-result=yes
|
|
||||||
|
|
||||||
layer=top
|
|
||||||
|
|
||||||
[border]
|
|
||||||
width=2
|
|
||||||
radius=10
|
|
||||||
selection-radius=10
|
|
||||||
|
|
@ -17,6 +17,7 @@ exec-once = uwsm app -- swww-daemon
|
||||||
exec-once = uwsm app -- waybar
|
exec-once = uwsm app -- waybar
|
||||||
exec-once = uwsm app -- swaync
|
exec-once = uwsm app -- swaync
|
||||||
exec-once = hyprshade auto
|
exec-once = hyprshade auto
|
||||||
|
exec-once = walker -A
|
||||||
|
|
||||||
exec-once = uwsm app -- opensnitch-ui
|
exec-once = uwsm app -- opensnitch-ui
|
||||||
exec-once = systemctl --user start hyprpolkitagent
|
exec-once = systemctl --user start hyprpolkitagent
|
||||||
|
|
@ -145,7 +146,7 @@ input {
|
||||||
|
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
||||||
gesture = 3, horizontal, workspace
|
gesture = 3, horizontal, workspace
|
||||||
gesture = 4, pinch, dispatcher, exec, fuzzel
|
gesture = 4, pinch, dispatcher, exec, walker
|
||||||
gesture = 4, left, dispatcher, exec, swaync-client -op
|
gesture = 4, left, dispatcher, exec, swaync-client -op
|
||||||
gesture = 4, right, dispatcher, exec, swaync-client -cp
|
gesture = 4, right, dispatcher, exec, swaync-client -cp
|
||||||
|
|
||||||
|
|
@ -167,7 +168,7 @@ $mainMod = SUPER # Sets "Windows" key as main modifier
|
||||||
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||||
bind = $mainMod, Q, exec, uwsm app -- ghostty
|
bind = $mainMod, Q, exec, uwsm app -- ghostty
|
||||||
bind = $mainMod, B, exec, uwsm app -- firefox
|
bind = $mainMod, B, exec, uwsm app -- firefox
|
||||||
bind = $mainMod, D, exec, fuzzel
|
bind = $mainMod, D, exec, walker
|
||||||
bind = $mainMod shift, D, exec, uwsm app -- 1password --quick-access
|
bind = $mainMod shift, D, exec, uwsm app -- 1password --quick-access
|
||||||
bind = $mainMod, S, exec, uwsm app -- hyprshot -z --clipboard-only -m region
|
bind = $mainMod, S, exec, uwsm app -- hyprshot -z --clipboard-only -m region
|
||||||
bind = $mainMod shift, S, exec, uwsm app -- hyprshot -z --clipboard-only -m window
|
bind = $mainMod shift, S, exec, uwsm app -- hyprshot -z --clipboard-only -m window
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,3 @@ output_path = '~/.cache/zsh_colours.sh'
|
||||||
input_path = './templates/pure.fish'
|
input_path = './templates/pure.fish'
|
||||||
output_path = '~/.config/fish/pure_colours.fish'
|
output_path = '~/.config/fish/pure_colours.fish'
|
||||||
post_hook = 'fish ~/.config/fish/pure_colours.fish'
|
post_hook = 'fish ~/.config/fish/pure_colours.fish'
|
||||||
|
|
||||||
[templates.fuzzel]
|
|
||||||
input_path = './templates/fuzzel.ini'
|
|
||||||
output_path = '~/.config/fuzzel/colors.ini'
|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
# Fuzzel Colors
|
|
||||||
# Generated with Matugen
|
|
||||||
|
|
||||||
[main]
|
|
||||||
font=ComicShannsMono Nerd Font
|
|
||||||
|
|
||||||
[colors]
|
|
||||||
background={{colors.background.default.hex_stripped}}ff
|
|
||||||
text={{colors.on_surface.default.hex_stripped}}ff
|
|
||||||
prompt={{colors.secondary.default.hex_stripped}}ff
|
|
||||||
placeholder={{colors.tertiary.default.hex_stripped}}ff
|
|
||||||
input={{colors.primary.default.hex_stripped}}ff
|
|
||||||
match={{colors.tertiary.default.hex_stripped}}ff
|
|
||||||
selection={{colors.primary.default.hex_stripped}}ff
|
|
||||||
selection-text={{colors.background.default.hex_stripped}}ff
|
|
||||||
selection-match={{colors.on_primary.default.hex_stripped}}ff
|
|
||||||
counter={{colors.secondary.default.hex_stripped}}ff
|
|
||||||
border={{colors.primary.default.hex_stripped}}ff
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue