Compare commits
No commits in common. "6c7bc148ae91aab7a1da8a88d98af32ce515b769" and "c1309c7d92f6e7a559af3006e1a54b0d872d15d6" have entirely different histories.
6c7bc148ae
...
c1309c7d92
5 changed files with 38 additions and 1061 deletions
|
@ -1,3 +0,0 @@
|
||||||
for d in `find ~/freistil -maxdepth 1 -type d`; do
|
|
||||||
echo -e "$d\034freistil\034freistil project `basename $d`"
|
|
||||||
done
|
|
1071
flake.lock
1071
flake.lock
File diff suppressed because it is too large
Load diff
|
@ -24,9 +24,6 @@
|
||||||
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz";
|
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
niri = {
|
|
||||||
url = "github:sodiboo/niri-flake";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
|
@ -37,7 +34,6 @@
|
||||||
sops-nix,
|
sops-nix,
|
||||||
stylix,
|
stylix,
|
||||||
lix-module,
|
lix-module,
|
||||||
niri,
|
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
} @ inputs: let
|
||||||
inherit (self) outputs;
|
inherit (self) outputs;
|
||||||
|
@ -51,8 +47,7 @@
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/cube.nix
|
./hosts/cube.nix
|
||||||
lix-module.nixosModules.default
|
lix-module.nixosModules.default
|
||||||
sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
niri.nixosModules.niri
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
muhhStar = lib.nixosSystem {
|
muhhStar = lib.nixosSystem {
|
||||||
|
@ -76,7 +71,6 @@
|
||||||
inputs.nixvim.homeManagerModules.nixvim
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
inputs.stylix.homeManagerModules.stylix
|
inputs.stylix.homeManagerModules.stylix
|
||||||
inputs.niri.homeModules.niri
|
|
||||||
./home.nix
|
./home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
8
home.nix
8
home.nix
|
@ -22,7 +22,6 @@
|
||||||
_1password
|
_1password
|
||||||
_1password-gui
|
_1password-gui
|
||||||
atkinson-hyperlegible
|
atkinson-hyperlegible
|
||||||
alacritty
|
|
||||||
brightnessctl
|
brightnessctl
|
||||||
curl
|
curl
|
||||||
ddcutil
|
ddcutil
|
||||||
|
@ -30,7 +29,6 @@
|
||||||
dog
|
dog
|
||||||
fd
|
fd
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
fuzzel
|
|
||||||
git
|
git
|
||||||
htop
|
htop
|
||||||
httpie
|
httpie
|
||||||
|
@ -244,9 +242,6 @@
|
||||||
vimKeys = true;
|
vimKeys = true;
|
||||||
sidebar.enable = true;
|
sidebar.enable = true;
|
||||||
};
|
};
|
||||||
niri = {
|
|
||||||
enable = false;
|
|
||||||
};
|
|
||||||
nixvim = {
|
nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
|
@ -506,8 +501,7 @@
|
||||||
image = /home/muhh/Sync/Backgrounds/wald.jpg;
|
image = /home/muhh/Sync/Backgrounds/wald.jpg;
|
||||||
polarity = "dark";
|
polarity = "dark";
|
||||||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
# base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-city-terminal-dark.yaml";
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-city-terminal-dark.yaml";
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/everforest.yaml";
|
|
||||||
fonts = {
|
fonts = {
|
||||||
monospace = {
|
monospace = {
|
||||||
package = (pkgs.nerdfonts.override { fonts = [ "Iosevka" ]; });
|
package = (pkgs.nerdfonts.override { fonts = [ "Iosevka" ]; });
|
||||||
|
|
|
@ -33,14 +33,6 @@
|
||||||
# Enable networking
|
# Enable networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
# Workaround for broken networkmanager/systemd thing
|
|
||||||
# https://github.com/NixOS/nixpkgs/issues/180175#issuecomment-1658731959
|
|
||||||
systemd.services.NetworkManager-wait-online = {
|
|
||||||
serviceConfig = {
|
|
||||||
ExecStart = [ "" "${pkgs.networkmanager}/bin/nm-online -q" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
||||||
|
@ -147,7 +139,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
brightnessKeys.enable = true;
|
brightnessKeys.enable = true;
|
||||||
};
|
};
|
||||||
# niri.enable = true;
|
|
||||||
sway.enable = true;
|
sway.enable = true;
|
||||||
};
|
};
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
|
|
Loading…
Reference in a new issue