Skip to content

Commit

Permalink
adjust emoji package, flake naming, wrapper directory and small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Keksgesicht committed Nov 3, 2023
1 parent 13e23a4 commit 1286d67
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 14 deletions.
2 changes: 1 addition & 1 deletion desktop/environment.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
noto-fonts-color-emoji
# Noto + NerdFont => Noto-Nerdfonts
(nerdfonts.override { fonts = [ "Noto" ]; })
# Microsoft TrueType core fonts
Expand Down
1 change: 1 addition & 0 deletions desktop/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

{
users.users."keks".packages = with pkgs; [
gnome.gnome-calculator
keepassxc
nextcloud-client
pdfgrep
Expand Down
File renamed without changes.
7 changes: 7 additions & 0 deletions development/NixOS-wrappers/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{ config, ... }:

{
imports = [
./cage-shell.nix
];
}
1 change: 0 additions & 1 deletion development/base-devel.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
nix-index
nmap
psmisc
pstree
pv
ripgrep
screen
Expand Down
4 changes: 2 additions & 2 deletions development/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ config, pkgs, ... }:
{ config, ... }:

{
imports = [
./base-devel.nix
./desktop.nix
./neovim.nix
./nix-cage.nix
./NixOS-wrappers
];
}
2 changes: 1 addition & 1 deletion files/packages/files-cleanup/bin/cleanup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ rm -r /home/*/.var/app/org.mozilla.firefox/cache

### delete temporary flatpak overrides
### they are now managed by nix
### /var/lib/flatpak/overrides -> /etc/flatpak/overrides -> pkgs.flatpak-overrides
### /var/lib/flatpak/overrides -> pkgs.flatpak-overrides
rm -fr /home/*/.local/share/flatpak/overrides

### delete old Tab Group backups
Expand Down
17 changes: 11 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
nixpkgs-stable.url = "nixpkgs/nixos-23.05";
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";

home-manager = {
#url = "github:nix-community/home-manager/release-23.05";
home-manager-stable = {
url = "github:nix-community/home-manager/release-23.05";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
home-manager-unstable = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};

tuxedo-nixos = {
url = "github:blitz/tuxedo-nixos";
inputs.nixpkgs.follows = "nixpkgs-unstable";
Expand All @@ -22,9 +26,10 @@
self,
nixpkgs-stable,
nixpkgs-unstable,
home-manager,
home-manager-stable,
home-manager-unstable,
lanzaboote,
tuxedo-nixos
tuxedo-nixos,
}@inputs: {
nixosConfigurations = {

Expand All @@ -40,7 +45,7 @@
};
modules = [
./machines/cookieclicker.nix
home-manager.nixosModules.home-manager
home-manager-unstable.nixosModules.home-manager
lanzaboote.nixosModules.lanzaboote
];
};
Expand All @@ -56,7 +61,7 @@
};
modules = [
./machines/cookiethinker.nix
home-manager.nixosModules.home-manager
home-manager-unstable.nixosModules.home-manager
tuxedo-nixos.nixosModules.default
lanzaboote.nixosModules.lanzaboote
];
Expand Down
3 changes: 1 addition & 2 deletions scripts/install/desktop/21-flatpak.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ flatpak remote-add --if-not-exists \
# essential apps
flatpak install -y 'flathub' \
com.github.hluk.copyq \
com.github.tchx84.Flatseal \
org.gnome.Calculator
com.github.tchx84.Flatseal

# browser
flatpak install -y 'flathub' \
Expand Down
1 change: 0 additions & 1 deletion scripts/install/laptop/21-flatpak.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ flatpak install -y \
com.github.tchx84.Flatseal \
io.gitlab.librewolf-community \
org.ferdium.Ferdium \
org.gnome.Calculator \
org.kde.okular \
org.mozilla.firefox \
org.mozilla.Thunderbird
Expand Down
1 change: 1 addition & 0 deletions services/system/files-cleanup.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"-/root/.dbus"
"-/root/.local"
"-/home/keks/.cache"
"-/home/keks/.local/share/flatpak/overrides"
"-/home/keks/.var/app/io.gitlab.librewolf-community/cache"
"-/home/keks/.var/app/org.kde.kdenlive/cache"
"-/home/keks/.var/app/org.mozilla.firefox/cache"
Expand Down

0 comments on commit 1286d67

Please sign in to comment.